CalendarItem constructor

const CalendarItem({
  1. Key? key,
  2. required Widget child,
  3. required CalendarItemType type,
  4. required int indexAtRow,
  5. required int rowCount,
  6. VoidCallback? onTap,
  7. double? width,
  8. double? height,
  9. required DateState state,
})

Implementation

const CalendarItem({
  super.key,
  required this.child,
  required this.type,
  required this.indexAtRow,
  required this.rowCount,
  this.onTap,
  this.width,
  this.height,
  required this.state,
});