GuildTextChannelUpdateBuilder constructor

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

Implementation

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