isMute method Null safety
override
returns true if audio is mute
Implementation
@override
Future<bool> isMute() async {
//TODO:: make platform call
return await PlatformService.invokeMethod(PlatformMethod.isAudioMute,
arguments: {"peer_id": peer!.peerId, "is_local": peer!.isLocal});
}