reportUserOrMessages method

  1. @override
Future<void> reportUserOrMessages(
  1. String jid,
  2. String type,
  3. String? messageId,
  4. dynamic callback(
    1. FlyResponse response
    )?,
)
override

This method is used to report the user or messages.

Implementation

@override
Future<void> reportUserOrMessages(String jid, String type, String? messageId,
    Function(FlyResponse response)? callback) async {
  bool? response;
  try {
    response = await mirrorFlyMethodChannel.invokeMethod<bool>(
        'reportUserOrMessages',
        {"jid": jid, "chat_type": type, "selectedMessageID": messageId});
    LogMessage.d("report Result ", " $response");
    callback?.call(FlyResponse(true, FlyConstants.empty, FlyConstants.empty));
    // return response;
  } 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)));
  }
}