DiscordEmbed constructor

DiscordEmbed({
  1. String? title,
  2. String? type,
  3. String? description,
  4. String? url,
  5. String? timestamp,
  6. int? color,
  7. DiscordEmbedFooter? footer,
  8. DiscordEmbedImage? image,
  9. DiscordEmbedThumbnail? thumbnail,
  10. DiscordEmbedVideo? video,
  11. DiscordEmbedProvider? provider,
  12. DiscordEmbedAuthor? author,
  13. List<DiscordEmbedField>? fields,
})

Implementation

DiscordEmbed({
  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,
});