GuildBuilder constructor

GuildBuilder(
  1. String name, {
  2. Snowflake? afkChannelId,
  3. int? afkTimeout,
  4. List<ChannelBuilder>? channels,
  5. int? defaultMessageNotifications,
  6. int? explicitContentFilter,
  7. AttachmentBuilder? icon,
  8. List<RoleBuilder>? roles,
  9. SystemChannelFlags? systemChannelFlags,
  10. Snowflake? systemChannelId,
  11. int? verificationLevel,
})

Create new instance of GuildBuilder

Implementation

GuildBuilder(
  this.name, {
  this.afkChannelId,
  this.afkTimeout,
  this.channels,
  this.defaultMessageNotifications,
  this.explicitContentFilter,
  this.icon,
  this.roles,
  this.systemChannelFlags,
  this.systemChannelId,
  this.verificationLevel,
});