toString method

  1. @override
String toString ()
override

Returns a string representation of this object.

Implementation

@override
String toString() {
  return x == y ? 'Radius.circular(${x.toStringAsFixed(1)})' :
                  'Radius.elliptical(${x.toStringAsFixed(1)}, '
                  '${y.toStringAsFixed(1)})';
}