fromHtml static method
- @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 ''')
- 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));
}