TagTextEditingController<T> constructor
TagTextEditingController<T> ({})
Implementation
TagTextEditingController(
{required this.searchTaggables,
required this.buildTaggables,
required this.toFrontendConverter,
required this.toBackendConverter,
this.tagStyles = const {
'@': TextStyle(color: Colors.blue),
}})
: super() {
addListener(cursorController);
addListener(tagStringController);
addListener(ensureWhiteSpaceController);
addListener(updateTaggables);
addListener(updatePreviousCursorPosition);
}