GuildBuilder constructor

GuildBuilder({
  1. required String name,
  2. String? icon,
  3. VerificationLevel? verificationLevel,
  4. NotificationLevel? defaultMessageNotifications,
  5. ExplicitContentFilterLevel? explicitContentFilter,
  6. List<ChannelBuilder> channels = const [],
  7. SystemChannelFlags? systemChannelFlags,
})

Implementation

GuildBuilder({
  required this.name,
  this.icon,
  this.verificationLevel,
  this.defaultMessageNotifications,
  this.explicitContentFilter,
  this.channels = const [],
  this.systemChannelFlags,
});