QuillController constructor
QuillController({
- required Document document,
- required TextSelection selection,
- bool keepStyleOnNewLine = false,
- ReplaceTextCallback? onReplaceText,
- DeleteCallback? onDelete,
- void onSelectionCompleted()?,
Implementation
QuillController({
required this.document,
required TextSelection selection,
bool keepStyleOnNewLine = false,
this.onReplaceText,
this.onDelete,
this.onSelectionCompleted,
}) : _selection = selection,
_keepStyleOnNewLine = keepStyleOnNewLine;