CalendarItem constructor
const
CalendarItem({
- Key? key,
- required Widget child,
- required CalendarItemType type,
- required int indexAtRow,
- required int rowCount,
- VoidCallback? onTap,
- double? width,
- double? height,
- 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,
});