MessageUpdateBuilder constructor

MessageUpdateBuilder(
  1. {String? content = sentinelString,
  2. List<EmbedBuilder>? embeds = sentinelList,
  3. bool? suppressEmbeds,
  4. AllowedMentions? allowedMentions,
  5. List<ActionRowBuilder>? components,
  6. List<AttachmentBuilder>? attachments = sentinelList}
)

Implementation

MessageUpdateBuilder({
  this.content = sentinelString,
  this.embeds = sentinelList,
  this.suppressEmbeds,
  this.allowedMentions,
  this.components,
  this.attachments = sentinelList,
});