enabled property

bool enabled

Whether or not this region should participate in the composite region.

Implementation

bool get enabled => _enabled;
void enabled=(bool value)

Implementation

set enabled(bool value) {
  if (_enabled != value) {
    _enabled = value;
    markNeedsLayout();
  }
}