ban method
Unbanned this from the Guild and deleted its messages for a given period
Example :
await member.unban();
Implementation
Future<bool> ban (Snowflake memberId, { String? reason }) async {
Response response = await ioc.use<HttpService>().destroy(url: '/guilds/$id/bans/$memberId');
return response.statusCode == 200;
}