MessageEmbed constructor

MessageEmbed({
  1. String? title,
  2. String? description,
  3. int? color,
  4. String? url,
  5. List<MessageEmbedTextField>? fields,
  6. MessageEmbedAuthor? author,
  7. MessageEmbedFooter? footer,
})

Implementation

MessageEmbed({
  this.title,
  this.description,
  this.color,
  this.url,
  this.fields,
  this.author,
  this.footer,
});