ShowSearch constructor

ShowSearch({
  1. required bool filter(
    1. String inputValue,
    2. String path
    ),
  2. int limit = 50,
  3. bool matchInputWidth = true,
  4. Widget builder(
    1. String inputValue,
    2. String path
    )?,
  5. void sort(
    1. String a,
    2. String b,
    3. String inputValue
    )?,
})

Implementation

ShowSearch({
  required this.filter,
  this.limit = 50,
  this.matchInputWidth = true,
  this.builder,
  this.sort,
});