CircularWeekView constructor

const CircularWeekView({
  1. Key? key,
  2. DateTime? initialDate,
  3. DateTime? selectedDate,
  4. ValueChanged<DateTime>? onDateSelected,
  5. Map<DateTime, int>? eventCounts,
  6. double size = 320,
})

Implementation

const CircularWeekView({
  super.key,
  this.initialDate,
  this.selectedDate,
  this.onDateSelected,
  this.eventCounts,
  this.size = 320,
});