FullCalendar constructor

FullCalendar({
  1. Key? key,
  2. Color? accent,
  3. DateTime? endDate,
  4. required DateTime startDate,
  5. required double? padding,
  6. List<String>? events,
  7. Color? black,
  8. Color? white,
  9. double? height,
  10. String? locale,
  11. DateTime? selectedDate,
  12. required Function onDateChange,
})

Implementation

FullCalendar({
  Key? key,
  this.accent,
  this.endDate,
  required this.startDate,
  required this.padding,
  this.events,
  this.black,
  this.white,
  this.height,
  this.locale,
  this.selectedDate,
  required this.onDateChange,
}) : super(key: key);