DateRangePickerTableFilter constructor

const DateRangePickerTableFilter({
  1. InputDecoration? decoration,
  2. DateFormat? dateFormat,
  3. required DateTime firstDate,
  4. required DateTime lastDate,
  5. required String chipFormatter(
    1. DateTimeRange value
    ),
  6. required String id,
  7. required String title,
  8. DateTimeRange? defaultValue,
})

Implementation

const DateRangePickerTableFilter(
    {this.decoration,
    this.dateFormat,
    required this.firstDate,
    required this.lastDate,
    required super.chipFormatter,
    required super.id,
    required super.title,
    super.defaultValue})
    : super(visible: true);