discordAuditLogChangeKeyFromValue function

DiscordAuditLogChangeKey discordAuditLogChangeKeyFromValue(
  1. String s
)

Implementation

DiscordAuditLogChangeKey discordAuditLogChangeKeyFromValue(String s) {
  return DiscordAuditLogChangeKey.values.firstWhere((e) => e.toApiString == s);
}