ThreadUpdateBuilder constructor

ThreadUpdateBuilder(
  1. {String? name,
  2. bool? isArchived,
  3. Duration? autoArchiveDuration,
  4. bool? isLocked,
  5. bool? isInvitable,
  6. Duration? rateLimitPerUser = sentinelDuration,
  7. Flags<ChannelFlags>? flags,
  8. List<Snowflake>? appliedTags}
)

Implementation

ThreadUpdateBuilder({
  this.name,
  this.isArchived,
  this.autoArchiveDuration,
  this.isLocked,
  this.isInvitable,
  this.rateLimitPerUser = sentinelDuration,
  this.flags,
  this.appliedTags,
});