CurrentDayIndicator constructor

const CurrentDayIndicator({
  1. Key? key,
  2. required List<DateTime> days,
  3. required double headerWidth,
  4. required int totalDays,
})

Implementation

const CurrentDayIndicator({
  Key? key,
  required this.days,
  required this.headerWidth,
  required this.totalDays,
}) : super(key: key);