getUnreadMessageCountExceptMutedChat method
Implementation
@override
Future<int?> getUnreadMessageCountExceptMutedChat() async {
int? res;
try {
res = await mirrorFlyMethodChannel
.invokeMethod<int>('getUnreadMessageCountExceptMutedChat');
return res;
} on PlatformException catch (e) {
debugPrint("Platform Exception ===> $e");
rethrow;
} on Exception catch (error) {
debugPrint("Exception ==> $error");
rethrow;
}
}