bounds property

Rect get bounds

Implementation

Rect get bounds => value.bounds;
set bounds (Rect value)

Implementation

set bounds(Rect value) {
  if (value == bounds) return;
  this.value = this.value.copyWith(bounds: value);
}