EmbedField constructor

EmbedField({
  1. required String name,
  2. String? url,
  3. bool? inline,
})

Implementation

EmbedField({
  required this.name,
  this.url,
  this.inline,
});