inflate method
Modify this Size so that its width and height are changed by the given distances. When the arguments are negative, this operation deflates this Size, but not beyond zero. @param {number} w The additional width, which must be a real number; may be negative. @param {number} h The additional height, which must be a real number; may be negative. @return {Rect} this.
Implementation
_i3.Size inflate(
_i2.num w,
_i2.num h,
) =>
_i4.callMethod(
this,
'inflate',
[
w,
h,
],
);