exportChatConversationToEmail method
Implementation
@override
Future<dynamic> exportChatConversationToEmail(String jid) async {
dynamic res;
try {
res = await mirrorFlyMethodChannel
.invokeMethod('exportChatConversationToEmail', {"jid": jid});
debugPrint("exportChatConversationToEmail Response ==> $res");
return res;
} on PlatformException catch (e) {
debugPrint("Platform Exception ===> $e");
rethrow;
} on Exception catch (error) {
debugPrint("Exception ==> $error");
rethrow;
}
}