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