pasteHtml method

void pasteHtml({
  1. required String html,
})

Paste html code into the editor.

Implementation

void pasteHtml({required String html}) => sendEvent(
      EditorPasteHtml(payload: processHtml(html: html)),
    );