updateChatMuteStatus method
Implementation
@override
updateChatMuteStatus(String jid, bool muteStatus) async {
try {
await mirrorFlyMethodChannel.invokeMethod(
'updateChatMuteStatus', {"jid": jid, "mute_status": muteStatus});
} on PlatformException catch (e) {
debugPrint("Platform Exception ===> $e");
rethrow;
} on Exception catch (error) {
debugPrint("Exception ==> $error");
rethrow;
}
}