TextChannel constructor

TextChannel(
  1. String? _description,
  2. String? _lastPinTime,
  3. int _rateLimit,
  4. ThreadManager _threads,
  5. bool nsfw,
  6. WebhookManager webhooks,
  7. MessageManager messages,
  8. Snowflake? lastMessageId,
  9. Snowflake guildId,
  10. Snowflake? parentId,
  11. String label,
  12. int type,
  13. int? position,
  14. int? flags,
  15. PermissionOverwriteManager? permissions,
  16. Snowflake id,
)

Implementation

TextChannel(
  this._description,
  this._lastPinTime,
  this._rateLimit,
  this._threads,
  super.nsfw,
  super.webhooks,
  super.messages,
  super.lastMessageId,
  super.guildId,
  super.parentId,
  super.label,
  super.type,
  super.position,
  super.flags,
  super.permissions,
  super.id
);