bounds property

  1. @override
Rectangle<num> bounds
override

Returns a rectangle that defines the area of this display object in this display object's local coordinates.

Implementation

@override
Rectangle<num> get bounds {
  if (_viewportRectangle == null) {
    return super.bounds;
  } else {
    return _viewportRectangle!.clone();
  }
}