RingMonthView constructor

const RingMonthView({
  1. Key? key,
  2. DateTime? initialMonth,
  3. DateTime? selectedDate,
  4. ValueChanged<DateTime>? onDateSelected,
  5. double size = 340,
})

Implementation

const RingMonthView({
  super.key,
  this.initialMonth,
  this.selectedDate,
  this.onDateSelected,
  this.size = 340,
});