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