GuildBuilder constructor

GuildBuilder({
  1. required String name,
  2. ImageBuilder? icon,
  3. VerificationLevel? verificationLevel,
  4. MessageNotificationLevel? defaultMessageNotificationLevel,
  5. ExplicitContentFilterLevel? explicitContentFilterLevel,
  6. List<RoleBuilder>? roles,
  7. List<GuildChannelBuilder<GuildChannel>>? channels,
  8. Snowflake? afkChannelId,
  9. Duration? afkTimeout,
  10. Snowflake? systemChannelId,
  11. Flags<SystemChannelFlags>? systemChannelFlags,
})

Implementation

GuildBuilder({
  required this.name,
  this.icon,
  this.verificationLevel,
  this.defaultMessageNotificationLevel,
  this.explicitContentFilterLevel,
  this.roles,
  this.channels,
  this.afkChannelId,
  this.afkTimeout,
  this.systemChannelId,
  this.systemChannelFlags,
});