SearchOptions<T> constructor

SearchOptions<T>({
  1. double height = 60,
  2. bool filterBy(
    1. Option<T> option,
    2. String query
    )?,
})

Implementation

SearchOptions({
  this.height = 60,
  this.filterBy,
});