QuillEditorController constructor

QuillEditorController()

A controller for the Quill editor.

The QuillEditorController class provides control over the Quill editor by managing its state and providing methods to interact with the editor's content and toolbar.

Implementation

QuillEditorController() {
  _editorKey =
      GlobalKey<QuillHtmlEditorState>(debugLabel: _getRandomString(15));
  _toolBarKey = GlobalKey<ToolBarState>(debugLabel: _getRandomString(15));
  _changeController = StreamController<String>();
  _editorLoadedController = StreamController<String>();
}