unban method

Future<void> unban(
  1. Snowflake id,
  2. Snowflake userId
)

Unbans a user by ID.

Implementation

Future<void> unban(Snowflake id, Snowflake userId) =>
    client.httpEndpoints.guildUnban(this.id, userId);