getDocsMessages method
This method is used to get the Document messages.
Implementation
@override
Future<String> getDocsMessages(String jid) async {
String? response;
try {
response = await mirrorFlyMethodChannel.invokeMethod('getDocsMessages', {
"jid": jid,
});
return convertChatMessagesJsonFromString(response);
} on PlatformException catch (e) {
LogMessage.d("Platform Exception =", " $e");
rethrow;
} on Exception catch (error) {
LogMessage.d("Exception ", " $error");
rethrow;
}
}