GuildAnnouncementChannelUpdateBuilder constructor

GuildAnnouncementChannelUpdateBuilder(
  1. {String? name,
  2. int? position = sentinelInteger,
  3. List<CreateBuilder<PermissionOverwrite>>? permissionOverwrites,
  4. ChannelType? type,
  5. String? topic = sentinelString,
  6. bool? isNsfw,
  7. Snowflake? parentId = sentinelSnowflake,
  8. Duration? defaultAutoArchiveDuration = sentinelDuration}
)

Implementation

GuildAnnouncementChannelUpdateBuilder({
  super.name,
  super.position,
  super.permissionOverwrites,
  this.type,
  this.topic = sentinelString,
  this.isNsfw,
  this.parentId = sentinelSnowflake,
  this.defaultAutoArchiveDuration = sentinelDuration,
});