- override
Returns a string representation of this object.
Source
@override String toString() { List<String> values = <String>[]; if (top != null) values.add('top=$top'); if (right != null) values.add('right=$right'); if (bottom != null) values.add('bottom=$bottom'); if (left != null) values.add('left=$left'); if (width != null) values.add('width=$width'); if (height != null) values.add('height=$height'); if (values.isEmpty) values.add('not positioned'); values.add(super.toString()); return values.join('; '); }