DateRangePickerCellDetails constructor

DateRangePickerCellDetails({
  1. required DateTime date,
  2. required Rect bounds,
  3. required List<DateTime> visibleDates,
})

Constructor to store the details that needed on calendar cell builder.

Implementation

DateRangePickerCellDetails(
    {required this.date, required this.bounds, required this.visibleDates});