MonthBuilder typedef
MonthBuilder =
Widget? Function({BoxDecoration? decoration, bool? isCurrentMonth, bool? isDisabled, bool? isSelected, required int month, TextStyle? textStyle})
Custom builder for the month widget
Implementation
typedef MonthBuilder = Widget? Function({
required int month,
TextStyle? textStyle,
BoxDecoration? decoration,
bool? isSelected,
bool? isDisabled,
bool? isCurrentMonth,
});