AutoSuggestController<T> constructor

AutoSuggestController<T>({
  1. Duration debounceDelay = const Duration(seconds: 1),
  2. int minSearchLength = 2,
  3. int maxRecentSearches = 10,
  4. bool enableRecentSearches = false,
})

Implementation

AutoSuggestController({
  this.debounceDelay = const Duration(seconds: 1),
  this.minSearchLength = 2,
  this.maxRecentSearches = 10,
  this.enableRecentSearches = false,
});