toString method
- @override
override
Returns a string representation of this object.
Implementation
@override
String toString() {
final 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('; ');
}