removeSplash method

Future<void> removeSplash()

Remove the splash banner of this

This method requires the feature GuildFeature.banner of this.

await guild.removeSplash();

Implementation

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

  Response response = await ioc.use<DiscordApiHttpService>().patch(url: "/guilds/$id")
    .payload({ 'splash': null })
    .build();

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