insertText method
Insert text at the end of the current HTML content in the editor.
Implementation
void insertText({required String text}) => sendEvent(
EditorInsertText(payload: text),
);
Insert text at the end of the current HTML content in the editor.
void insertText({required String text}) => sendEvent(
EditorInsertText(payload: text),
);