FTypeaheadController.fromValue constructor

FTypeaheadController.fromValue(
  1. TextEditingValue? value, {
  2. required FTypeaheadControllerTextStyles textStyles,
  3. List<String> suggestions = const [],
})

Implementation

FTypeaheadController.fromValue(
  super.value, {
  required FTypeaheadControllerTextStyles textStyles,
  List<String> suggestions = const [],
}) : _textStyles = textStyles,
     _suggestions = suggestions,
     super.fromValue() {
  findCompletion();
}