BadContributionCalendar constructor

const BadContributionCalendar({
  1. Key? key,
  2. CalendarController? controller,
  3. CalendarConfig config = const CalendarConfig(),
  4. required DateTimeRange<DateTime> range,
  5. required Map<DateTime, int> values,
  6. void onDateTap(
    1. DateTime date,
    2. int? value
    )?,
})

Implementation

const BadContributionCalendar({
  super.key,
  this.controller,
  this.config = const CalendarConfig(),
  required this.range,
  required this.values,
  this.onDateTap,
});