setText method
Sets the HTML text content in the editor.
The setText method is used to set the HTML text content in the editor, overriding any existing text with the new content.
Implementation
Future setText(String text) async {
return await _editorKey?.currentState?._setHtmlTextToEditor(htmlText: text);
}