MonthLabelItem constructor

const MonthLabelItem({
  1. Key? key,
  2. required DateTime date,
  3. Color? monthLabelColor,
  4. double? monthLabelFontSize,
  5. required EdgeInsetsGeometry padding,
  6. double? innderWidth,
  7. double? innderHeight,
  8. required DateFormat format,
  9. MonthLabelValueBuilder? monthLabelItemBuilder,
})

Implementation

const MonthLabelItem({
  super.key,
  required this.date,
  this.monthLabelColor,
  this.monthLabelFontSize,
  required this.padding,
  this.innderWidth,
  this.innderHeight,
  required this.format,
  this.monthLabelItemBuilder,
});