inflate method

Rect inflate(
  1. num w,
  2. num h
)

Modify this Rect so that its width and height are changed on all four sides, equally on the left and right sides, and equally on the top and bottom sides. When the arguments are negative, this operation deflates this Rect, but not beyond zero. @param {number} w The additional width on each side, left and right; may be negative. @param {number} h The additional height on each side, top and bottom; may be negative. @return {Rect} this. @since 2.3 @see #grow @see #addMargin @see #subtractMargin

Implementation

_i3.Rect inflate(
  _i2.num w,
  _i2.num h,
) =>
    _i4.callMethod(
      this,
      'inflate',
      [
        w,
        h,
      ],
    );