innerHtml property - SvgElement class - dart:svg library (original) (raw)

String? getinnerHtml

override

Implementation

String? get innerHtml {
  final container = new DivElement();
  final SvgElement cloned = this.clone(true) as SvgElement;
  container.children.addAll(cloned.children);
  return container.innerHtml;
}

setinnerHtml (String? value)

override

Parses the HTML fragment and sets it as the contents of this element.

This uses the default sanitization behavior to sanitize the HTML fragment, use setInnerHtml to override the default behavior.

Implementation

set innerHtml(String? value) {
  this.setInnerHtml(value);
}