isEnabled property

bool get isEnabled

Implementation

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

Implementation

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