kick method

Future<void> kick({
  1. int? count,
  2. String? reason,
})

Kick this of Guild

Example :

await member.removeTimeout();

Implementation

Future<void> kick ({ int? count, String? reason }) async {
  Http http = ioc.singleton(Service.http);
  await http.destroy(url: "/guilds/${guild.id}/members/${user.id}");
}