convertDeltaToHtml static method
Implementation
static String convertDeltaToHtml(dynamic deltaJson) {
QuillController controller = QuillController(
document: Document.fromJson(deltaJson),
selection: const TextSelection.collapsed(offset: 0),
);
return convertQuillToHtmlText(controller);
}