getHtml method
Call getHtml to get current HTML code from summernote form
Implementation
Future<String> getHtml() async {
await _webViewController?.runJavaScript(
'setTimeout(function(){GetHtmlSummernote.postMessage(document.'
'getElementsByClassName(\'note-editable\')[0].outerHTML)}, 0);',
);
return html;
}