setHtml method

dynamic setHtml(
  1. String html
)

Set your HTML to the editor

Implementation

setHtml(String html) async {
  if (_controller != null) {
    return await javascriptExecutor.setHtml(html);
  }
  htmlLocal = html;
}