- override
Returns a string representation of this object.
Source
@override
String toString() {
final List<String> data = <String>[];
debugFillDescription(data);
final String name = widget != null ? '${widget.runtimeType}' : '[$runtimeType]';
return '$name(${data.join("; ")})';
}