fromHtml static method

  1. @experimental
  2. @Deprecated(''' The experimental support for HTML conversion has been dropped and will be removed in future releases, consider using alternatives such as https://pub.dev/packages/flutter_quill_delta_from_html ''')
Document fromHtml(
  1. String html
)

Convert the HTML Raw string to Document

Implementation

@experimental
@Deprecated(
  '''
  The experimental support for HTML conversion has been dropped and will be removed in future releases,
  consider using alternatives such as https://pub.dev/packages/flutter_quill_delta_from_html
  ''',
)
static Document fromHtml(String html) {
  return Document.fromDelta(DeltaX.fromHtml(html));
}