CustomizableEditorController constructor

CustomizableEditorController({
  1. String? text,
})

Implementation

CustomizableEditorController({super.text}) {
  addListener(() {
    if (!canUndo || _oldText == null) {
      _oldText = text;
      return;
    }

    if (text.length == _oldText!.length + 1) _clearCache();

    _oldText = text;
  });
}