FTypeaheadController.fromValue constructor
FTypeaheadController.fromValue(
- TextEditingValue? value, {
- required FTypeaheadControllerTextStyles textStyles,
- List<
String> suggestions = const [],
Creates a FTypeaheadController from a TextEditingValue.
Implementation
FTypeaheadController.fromValue(
super.value, {
required FTypeaheadControllerTextStyles textStyles,
List<String> suggestions = const [],
}) : _textStyles = textStyles,
_suggestions = suggestions,
super.fromValue() {
findCompletion();
}