Get current HTML from editor
Future<String?> getHtml() async { try { if (_controller != null) { htmlLocal = await javascriptExecutor.getCurrentHtml(); } } catch (e) {} return htmlLocal; }