FXCustomCalendar constructor

const FXCustomCalendar({
  1. Key? key,
  2. required DateTime selectedDate,
  3. Color? selectedColor,
  4. Color? rangeSelectedColor,
  5. String? confirmText,
})

Implementation

const FXCustomCalendar({
  Key? key,
  required this.selectedDate,
  this.selectedColor,
  this.rangeSelectedColor,
  this.confirmText,
}) : super(key: key);