EmbedBuilder constructor

EmbedBuilder({
  1. String? title,
  2. String? description,
  3. String? url,
  4. DateTime? timestamp,
  5. Footer? footer,
  6. Image? image,
  7. Thumbnail? thumbnail,
  8. Author? author,
  9. List<Field>? 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,
});