EmbedBuilder constructor

EmbedBuilder({
  1. String? title,
  2. String? description,
  3. String? url,
  4. DateTime? timestamp,
  5. EmbedFooter? footer,
  6. EmbedImage? image,
  7. EmbedThumbnail? thumbnail,
  8. EmbedAuthor? author,
  9. List<EmbedField>? fields,
  10. Color? color,
})

Implementation

EmbedBuilder({
  this.title,
  this.description,
  this.url,
  this.timestamp,
  this.footer,
  this.image,
  this.thumbnail,
  this.author,
  this.fields,
  this.color,
});