removeBanner method

Future<void> removeBanner()

Remove the banner of this

This method requires the feature GuildFeature.banner of this

Example :

await guild.removeBanner();

Implementation

Future<void> removeBanner () async {
  if (!features.contains(GuildFeature.banner)) {
    throw MissingFeatureException(cause: "The $name guild does not have the ${GuildFeature.banner} feature.");
  }

  Http http = ioc.singleton(Service.http);
  Response response = await http.patch(url: "/guilds/$id", payload: { 'banner': null });

  if (response.statusCode == 200) {
    _banner = null;
  }
}