isEnabled property

bool get isEnabled

Implementation

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

Implementation

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