Embed constructor

Embed({
  1. String? title,
  2. EmbedType? type,
  3. String? description,
  4. String? url,
  5. DateTime? timestamp,
  6. int? color,
  7. EmbedFooter? footer,
  8. EmbedImage? image,
  9. EmbedThumbnail? thumbnail,
  10. EmbedVideo? video,
  11. EmbedProvider? provider,
  12. EmbedAuthor? author,
  13. List<EmbedField>? fields,
})

Constructor

Implementation

Embed({
  this.title,
  this.type,
  this.description,
  this.url,
  this.timestamp,
  this.color,
  this.footer,
  this.image,
  this.thumbnail,
  this.video,
  this.provider,
  this.author,
  this.fields,
});