FCalendarDayPickerStyle constructor
const
FCalendarDayPickerStyle({})
Creates a FCalendarDayPickerStyle.
Implementation
const FCalendarDayPickerStyle({
required this.weekdayTextStyle,
required this.dayStyles,
required this.daySize,
this.headerSpacing = 0,
this.firstDayOfWeek,
this.daySpacing = 2,
}) : assert(
firstDayOfWeek == null || (DateTime.monday <= firstDayOfWeek && firstDayOfWeek <= DateTime.sunday),
'firstDayOfWeek ($firstDayOfWeek) must be between DateTime.monday (1) and DateTime.sunday (7)',
);