UpdateGuildSettingsRequest constructor

const UpdateGuildSettingsRequest({
  1. required SnowflakeType guildId,
  2. GuildVerificationLevel? verificationLevel,
  3. GuildMfaLevel? mfaLevel,
  4. NsfwLevel? nsfwLevel,
  5. bool? nsfw,
  6. ContentWarningLevel? contentWarningLevel,
  7. String? contentWarningText,
  8. GuildExplicitContentFilter? explicitContentFilter,
  9. DefaultMessageNotifications? defaultMessageNotifications,
  10. GuildOperations? disabledOperations,
})

Implementation

const UpdateGuildSettingsRequest({
  required this.guildId,
  this.verificationLevel,
  this.mfaLevel,
  this.nsfwLevel,
  this.nsfw,
  this.contentWarningLevel,
  this.contentWarningText,
  this.explicitContentFilter,
  this.defaultMessageNotifications,
  this.disabledOperations,
});