audible property

bool? audible

Whether the tab has produced sound over the past couple of seconds (but it might not be heard if also muted). Equivalent to whether the 'speaker audio' indicator is showing.

Implementation

bool? get audible => _wrapped.audible;
void audible=(bool? v)

Implementation

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