unbanMember method

Future<EmptyResponse> unbanMember(
  1. String userID
)

Remove the ban for the member with given userID in the channel.

Implementation

Future<EmptyResponse> unbanMember(String userID) async {
  _checkInitialized();
  return _client.unbanUser(userID, {
    'type': type,
    'id': id,
  });
}