toString method

  1. @override
String toString ()
override

Returns a string representation of this object.

Implementation

@override
String toString() {
  return '$runtimeType('
           'size: $size, '
           'devicePixelRatio: ${devicePixelRatio.toStringAsFixed(1)}, '
           'textScaleFactor: ${textScaleFactor.toStringAsFixed(1)}, '
           'padding: $padding, '
           'viewInsets: $viewInsets, '
           'alwaysUse24HourFormat: $alwaysUse24HourFormat, '
           'accessibleNavigation: $accessibleNavigation'
           'disableAnimations: $disableAnimations'
           'invertColors: $invertColors'
           'boldText: $boldText'
         ')';
}