hasAudio property

bool get hasAudio

Indicates whether this OngoingCall has an active microphone track.

Implementation

bool get hasAudio =>
    members[_me]?.tracks
        .where(
          (t) =>
              t.kind == MediaKind.audio && t.source == MediaSourceKind.device,
        )
        .isNotEmpty ??
    false;