bottom property

num get bottom

Gets or sets the y-axis value of the bottom of the Rect. This is equal to the sum of the y value and the height.

Implementation

_i2.num get bottom => _i4.getProperty(
      this,
      'bottom',
    );
set bottom (num value)

Implementation

set bottom(_i2.num value) {
  _i4.setProperty(
    this,
    'bottom',
    value,
  );
}