isMicrophoneMuted property

bool isMicrophoneMuted

Convenience method that returns true if there is no microphone track available for the participant.

Implementation

bool get isMicrophoneMuted => media?.microphone.state == null || _offStates.contains(media?.microphone.state);