exportChatConversationToEmail method

  1. @override
Future<void> exportChatConversationToEmail(
  1. String jid,
  2. dynamic callback(
    1. FlyResponse response
    )?
)
override

This method is used to export the chat conversation to email.

Implementation

@override
Future<void> exportChatConversationToEmail(
    String jid, Function(FlyResponse response)? callback) async {
  String? res;
  try {
    res = await mirrorFlyMethodChannel
        .invokeMethod('exportChatConversationToEmail', {"jid": jid});
    callback?.call(FlyResponse(
        true, convertExportJsonFromString(res), FlyConstants.empty));
    // return convertExportJsonFromString(res);
  } on PlatformException catch (e) {
    LogMessage.d("Platform Exception =", " $e");
    callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
        FlyException(e.code, e.message, e.details)));
  } on Exception catch (e) {
    LogMessage.d("Exception ", " $e");
    callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
        FlyException(FlyErrorCode.unHandle, FlyErrorMessage.unHandle, e)));
  }
}