inflateRect method

  1. @override
Rect inflateRect(
  1. Rect rect
)
override

Returns a new rect that is bigger than the given rect in each direction by the amount of inset in each direction. Specifically, the left edge of the rect is moved left by left, the top edge of the rect is moved up by top, the right edge of the rect is moved right by right, and the bottom edge of the rect is moved down by bottom.

See also:

Implementation

@override
Rect inflateRect(Rect rect) => $value.inflateRect(rect);