unbanGroupMember static method

Future<String?> unbanGroupMember({
  1. required String guid,
  2. required String uid,
  3. required dynamic onSuccess(
    1. String result
    )?,
  4. required dynamic onError(
    1. CometChatException excep
    )?,
})

Only Admin or Moderators of the group can unban a previously banned member from the group

guid The UID of the group from which user is to be unbanned

uid The UID of the user to be unbanned

method could throw PlatformException with error codes specifying the cause

Implementation

static Future<String?> unbanGroupMember(
    {required String guid,
    required String uid,
    required Function(String result)? onSuccess,
    required Function(CometChatException excep)? onError}) async {
  try {
    final result = await channel.invokeMethod('unbanGroupMember', {
      'guid': guid,
      'uid': uid,
    });
    if (onSuccess != null) onSuccess(result);
    return result;
  } on PlatformException catch (p) {
    _errorCallbackHandler(null, p, null, onError);
  } catch (e) {
    _errorCallbackHandler(null, null, e, onError);
  }
  return null;
}