grow method

Rect grow(
  1. num t,
  2. num r,
  3. num b,
  4. num l,
)

Modifies this Rect by adding some distance to each side of the Rect. @param {number} t the amount to move the top side upwards; may be negative. @param {number} r the amount to move the right side rightwards; may be negative. @param {number} b the amount to move the bottom side downwards; may be negative. @param {number} l the amount to move the left side leftwards; may be negative. @return {Rect} this modified Rect. @see #inflate @see #addMargin @see #subtractMargin

Implementation

_i3.Rect grow(
  _i2.num t,
  _i2.num r,
  _i2.num b,
  _i2.num l,
) =>
    _i4.callMethod(
      this,
      'grow',
      [
        t,
        r,
        b,
        l,
      ],
    );