htmlToDocument function

Document htmlToDocument(
  1. String html
)

Converts a html to Document.

Implementation

Document htmlToDocument(String html) {
  return const AppFlowyEditorHTMLCodec().decode(html);
}