EmbedBuilder constructor

EmbedBuilder({
  1. EmbedAuthorBuilder? author,
  2. DiscordColor? color,
  3. String? description,
  4. List<EmbedFieldBuilder> fields = const [],
  5. EmbedFooterBuilder? footer,
  6. String? imageUrl,
  7. String? thumbnailUrl,
  8. DateTime? timestamp,
  9. String? title,
  10. String? type,
  11. String? url,
})

Creates clean instance EmbedBuilder

Implementation

EmbedBuilder({
  this.author,
  this.color,
  this.description,
  this.fields = const [],
  this.footer,
  this.imageUrl,
  this.thumbnailUrl,
  this.timestamp,
  this.title,
  this.type,
  this.url,
}) {
  fields = [];
}