html property

String html

The HTML value of the editor.

When the value is changed, listeners will be notified.

Implementation

String get html => value.html;
void 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,
    ),
  );
}