TextChannelBuilder constructor

TextChannelBuilder({
  1. Snowflake? id,
  2. String? name,
  3. SnowflakeEntity? parentChannel,
  4. List<PermissionOverrideBuilder>? permissionOverrides,
  5. int? position,
  6. bool? nsfw,
  7. String? topic,
  8. int? rateLimitPerUser,
})

Implementation

TextChannelBuilder({
  super.id,
  super.name,
  super.parentChannel,
  super.permissionOverrides,
  super.position,
  this.nsfw,
  this.topic,
  this.rateLimitPerUser,
}) : super._();