GuildBuilder constructor
      
      GuildBuilder({ 
    
    
- required String name,
 - String? icon,
 - VerificationLevel? verificationLevel,
 - NotificationLevel? defaultMessageNotifications,
 - ExplicitContentFilterLevel? explicitContentFilter,
 - List<
ChannelBuilder> channels = const [], - SystemChannelFlags? systemChannelFlags,
 
Implementation
GuildBuilder({
  required this.name,
  this.icon,
  this.verificationLevel,
  this.defaultMessageNotifications,
  this.explicitContentFilter,
  this.channels = const [],
  this.systemChannelFlags,
});