isMicrophoneEnabled method
Convenience property to check whether TrackSource.microphone is published or not.
Implementation
bool isMicrophoneEnabled() {
return !(getTrackPublicationBySource(TrackSource.microphone)?.muted ??
true);
}
Convenience property to check whether TrackSource.microphone is published or not.
bool isMicrophoneEnabled() {
return !(getTrackPublicationBySource(TrackSource.microphone)?.muted ??
true);
}