MessageBuilder constructor

MessageBuilder(
  1. {String? content,
  2. dynamic nonce,
  3. bool? tts,
  4. List<EmbedBuilder>? embeds,
  5. AllowedMentions? allowedMentions,
  6. Snowflake? replyId,
  7. bool? requireReplyToExist,
  8. List<ActionRowBuilder>? components,
  9. List<Snowflake>? stickerIds,
  10. List<AttachmentBuilder>? attachments,
  11. bool? suppressEmbeds,
  12. bool? suppressNotifications,
  13. bool? enforceNonce}
)

Implementation

MessageBuilder({
  this.content,
  this.nonce,
  this.tts,
  this.embeds,
  this.allowedMentions,
  this.replyId,
  this.requireReplyToExist,
  this.components,
  this.stickerIds,
  this.attachments,
  this.suppressEmbeds,
  this.suppressNotifications,
  this.enforceNonce,
});