isActive property

bool get isActive

True if this is the current active device.

Implementation

bool get isActive => _wrapped.isActive;
set isActive (bool v)

Implementation

set isActive(bool v) {
  _wrapped.isActive = v;
}