HtmlContent constructor

HtmlContent({
  1. required String html,
  2. String? id,
  3. String? selector,
  4. String? className,
  5. DartStyle? dartStyle,
  6. Map<String, Object?> props = const {},
  7. bool trusted = true,
})

Creates an HTML content mount.

Implementation

HtmlContent({
  required this.html,
  this.id,
  this.selector,
  this.className,
  this.dartStyle,
  this.props = const {},
  this.trusted = true,
});