isEnabled property

bool isEnabled

Implementation

bool get isEnabled => _enabled;
void isEnabled=(bool newValue)

Implementation

set isEnabled(bool newValue) {
  _enabled = newValue;
  _controller.setModeEnabledState(newValue);
}