SmartSearchConfig constructor

const SmartSearchConfig({
  1. Duration debounceDelay = const Duration(seconds: 1),
  2. int minSearchLength = 0,
  3. bool searchOnEmpty = true,
  4. bool clearOnClose = true,
  5. bool autoFocus = false,
})

Implementation

const SmartSearchConfig({
  this.debounceDelay = const Duration(seconds: 1),
  this.minSearchLength = 0,
  this.searchOnEmpty = true,
  this.clearOnClose = true,
  this.autoFocus = false,
});