blockUser method

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

This method is used to block the user.

Implementation

@override
Future<void> blockUser(
    String userJID, Function(FlyResponse response)? callback) async {
  bool? userBlockResponse;
  try {
    userBlockResponse = await mirrorFlyMethodChannel
        .invokeMethod<bool>('block_user', {"userJID": userJID});
    LogMessage.d("blockUser Response ", " $userBlockResponse");
    callback?.call(FlyResponse(true, FlyConstants.empty, FlyConstants.empty));
    // return userBlockResponse;
  } 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)));
  }
}