enabled property Null safety
Whether or not this region should participate in the composite region.
Implementation
bool get enabled => _enabled;
Implementation
set enabled(bool value) {
if (_enabled != value) {
_enabled = value;
markNeedsLayout();
}
}