removeDiscoverySplash method
Remove the discovery splash banner of this
This method requires the feature GuildFeature.banner of this
Example :
await guild.removeDiscoverySplash();
Implementation
Future<void> removeDiscoverySplash () async {
if (!features.contains(GuildFeature.banner)) {
throw MissingFeatureException('The $name guild does not have the ${GuildFeature.discoverable} feature.');
}
Response response = await ioc.use<HttpService>().patch(url: "/guilds/$id", payload: { 'discovery_splash': null });
if (response.statusCode == 200) {
_discoverySplash = null;
}
}