innerHtml property
String innerHtmlSource
String get innerHtml { final container = new DivElement(); final SvgElement cloned = this.clone(true); container.children.addAll(cloned.children); return container.innerHtml; }void innerHtml=(
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.
Source
set innerHtml(String value) { this.setInnerHtml(value); }
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-svg/SvgElement/innerHtml.html