Rect rect

The bounding box for this node in its coordinate system.

Source

Rect get rect => _rect;
void rect=(Rect value)

Source

set rect (Rect value) {
  assert(value != null);
  if (_rect != value) {
    _rect = value;
    _markDirty();
  }
}