getDocsMessages method

  1. @override
Future getDocsMessages(
  1. String jid
)
override

Implementation

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