toString method

  1. @override
String toString()
override

Returns a string representation of this rectangle.

The string includes the left, top, right, bottom, width, and height values.

Implementation

@override
String toString() =>
    'IntRect(L:$left, T:$top, R:$right B:$bottom W:$width, H:$height)';