mayEnable property

bool? get mayEnable

Whether this extension can be enabled by the user. This is only returned for extensions which are not enabled.

Implementation

bool? get mayEnable => _wrapped.mayEnable;
set mayEnable (bool? v)

Implementation

set mayEnable(bool? v) {
  _wrapped.mayEnable = v;
}