isActive property
bool?
get
isActive
If set, only audio devices whose active state matches this value will satisfy the filter.
Implementation
bool? get isActive => _wrapped.isActive;
set
isActive
(bool? v)
Implementation
set isActive(bool? v) {
_wrapped.isActive = v;
}