setLabel method
Update the label of this
Example :
await rule.setLabel('My label');
Implementation
Future<void> setLabel(String label) async {
Response response = await ioc.use<HttpService>().patch(url: "/guilds/$guildId/auto-moderation/rules/$id", payload: { 'label': label });
if (response.statusCode == 200) {
this.label = label;
}
}