setLabel method

Future<void> setLabel(
  1. String label, {
  2. String? reason,
})

Update the label of this

Example :

await rule.setLabel('My label');

Implementation

Future<void> setLabel(String label, { String? reason }) async {
  Response response = await ioc.use<DiscordApiHttpService>().patch(url: "/guilds/$guildId/auto-moderation/rules/$id")
    .payload({ 'label': label })
    .auditLog(reason)
    .build();

  if (response.statusCode == 200) {
    this.label = label;
  }
}