sendTypingStatus method
Implementation
@override
sendTypingStatus(String toJid, String chattype) async {
try {
await mirrorFlyMethodChannel.invokeMethod(
'sendTypingStatus', {"to_jid": toJid, "chattype": chattype});
} on PlatformException catch (e) {
debugPrint("Platform Exception ===> $e");
rethrow;
} on Exception catch (error) {
debugPrint("Exception ==> $error");
rethrow;
}
}