bounds property

Rect get bounds

This read-only property returns a rectangle that contains all points within the Geometry. The result will always contain the origin (0, 0).

Implementation

_i3.Rect get bounds => _i4.getProperty(
      this,
      'bounds',
    );
set bounds (Rect value)

Implementation

set bounds(_i3.Rect value) {
  _i4.setProperty(
    this,
    'bounds',
    value,
  );
}