Message constructor

Message(
  1. Snowflake _id,
  2. String _content,
  3. bool _tts,
  4. List<EmbedBuilder> _embeds,
  5. bool _allowMentions,
  6. PartialMessage<PartialChannel>? _reference,
  7. List<Component> _components,
  8. List<MessageStickerItem> _stickers,
  9. dynamic _payload,
  10. List<MessageAttachment> _attachments,
  11. int? _flags,
  12. bool _pinned,
  13. Snowflake? _guildId,
  14. Snowflake _channelId,
  15. MessageReactionManager<PartialChannel, PartialMessage<PartialChannel>> _reactions,
  16. Snowflake _authorId,
  17. MessageMention _mentions,
)

Implementation

Message(
  super._id,
  super._content,
  super._tts,
  super._embeds,
  super._allowMentions,
  super._reference,
  super._components,
  super._stickers,
  super._payload,
  super._attachments,
  super._flags,
  super._pinned,
  super._guildId,
  super._channelId,
  super._reactions,
  this._authorId,
  this._mentions,
);