getHtml method

Future<String> getHtml()

Get html content from editor

Implementation

Future<String> getHtml() async {
  return await webViewController.evaluateJavascript(
      source: 'editor.innerHTML;');
}