isEnabled property

bool isEnabled

Implementation

bool get isEnabled {
  return _isEnabled!;
}
void isEnabled=(bool value)

Implementation

set isEnabled(bool value) {
  if (value == _isEnabled) {
    return;
  }
  _isEnabled = value;
  markDirty();
}