FilterProps constructor

FilterProps({
  1. Icon? closeIcon,
  2. Function? onCloseTap,
  3. bool? showCloseIcon,
  4. required List<FilterListModel> filters,
  5. dynamic onFilterChange(
    1. List<AppliedFilterModel> appliedFilterModel
    )?,
  6. String? title,
  7. ThemeProps? themeProps,
})

Implementation

FilterProps({
  this.closeIcon,
  this.onCloseTap,
  this.showCloseIcon,
  required this.filters,
  this.onFilterChange,
  this.title,
  this.themeProps,
});