refuseFriendApplication method

Future refuseFriendApplication({
  1. required String userID,
  2. String? handleMsg,
  3. String? operationID,
})

Reject Friend Request userID User ID handleMsg Remark description

Implementation

Future<dynamic> refuseFriendApplication({
  required String userID,
  String? handleMsg,
  String? operationID,
}) =>
    _channel.invokeMethod(
        'refuseFriendApplication',
        _buildParam({
          "toUserID": userID,
          "handleMsg": handleMsg,
          "operationID": Utils.checkOperationID(operationID),
        }));