isEnabled property

bool isEnabled

Implementation

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

Implementation

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