html property
String
get
html
The HTML value of the editor.
When the value is changed, listeners will be notified.
Implementation
String get html => value.html;
set
html
(String html)
Change the current html value of the editor.
Listeners will be notified of the change.
Implementation
set html(String html) {
value = value.copyWith(
html: processHtml(
html: html,
processInputHtml: processInputHtml,
processNewLineAsBr: processNewLineAsBr,
),
);
}