ThreadChannel constructor

ThreadChannel(
  1. bool _archived,
  2. int _autoArchiveDuration,
  3. bool _locked,
  4. bool? _invitable,
  5. String _createdAt,
  6. MessageManager<Message> messages,
  7. Snowflake? lastMessageId,
  8. Snowflake guildId,
  9. Snowflake? parentId,
  10. String label,
  11. int type,
  12. int? position,
  13. int? flags,
  14. PermissionOverwriteManager? permissions,
  15. Snowflake id,
)

Implementation

ThreadChannel(
  this._archived,
  this._autoArchiveDuration,
  this._locked,
  this._invitable,
  this._createdAt,
  super.messages,
  super.lastMessageId,
  super.guildId,
  super.parentId,
  super.label,
  super.type,
  super.position,
  super.flags,
  super.permissions,
  super.id
);