embed constructor

const embed({
  1. required String src,
  2. String? type,
  3. int? width,
  4. int? height,
  5. String? id,
  6. String? classes,
  7. Styles? styles,
  8. Map<String, String>? attributes,
  9. Map<String, EventCallback>? events,
  10. Key? key,
})

The <embed> HTML element embeds external content at the specified point in the document. This content is provided by an external application or other source of interactive content such as a browser plug-in.

Implementation

const embed({
  required this.src,
  this.type,
  this.width,
  this.height,
  this.id,
  this.classes,
  this.styles,
  this.attributes,
  this.events,
  super.key,
});