DateRangeFilterView constructor

const DateRangeFilterView({
  1. Key? key,
  2. required List<SelectOption> options,
  3. required List<String> checked,
  4. Color? selectedColor,
  5. required dynamic onValueChange(
    1. List<String>
    ),
  6. String title = "",
})

Implementation

const DateRangeFilterView(
    {Key? key,
      required this.options,
      required this.checked,
      this.selectedColor,
      required this.onValueChange,
      this.title = ""})
    : super(key: key);