BaseFilterView<T extends Filter<Object, dynamic>> constructor

BaseFilterView<T extends Filter<Object, dynamic>>({
  1. FilterController<T>? filterController,
  2. bool? allowSorting,
  3. String? hint,
})

Implementation

BaseFilterView({
  FilterController<T>? filterController,
  bool? allowSorting,
  this.hint,
})  : filterController = filterController ?? FilterController<T>(),
      allowSorting = allowSorting ?? true;