FLAutoComplete<T> constructor

FLAutoComplete<T>({
  1. Key? key,
  2. FocusNode? focusNode,
  3. ValueChanged<T>? onSelectedSuggestion,
  4. bool hideAfterSelection = true,
  5. bool hideWhenUnfocus = true,
  6. required FLAutoCompleteItemBuilder<T> itemBuilder,
  7. required Widget child,
})

Implementation

FLAutoComplete(
    {Key? key,
    this.focusNode,
    this.onSelectedSuggestion,
    this.hideAfterSelection = true,
    this.hideWhenUnfocus = true,
    required this.itemBuilder,
    required this.child})
    : super(key: key);