MonthlyView constructor

const MonthlyView({
  1. Key? key,
  2. required DateTime selectedMonth,
  3. BoxDecoration? decoration,
  4. List<MarkedDaysModel>? markedDaysList,
  5. TextStyle? weekNameHeaderStyle,
  6. Widget? defaultChild,
  7. BoxDecoration? userPickedDecoration,
  8. Widget? userPickedChild,
  9. EdgeInsets? cellPadding,
  10. required void onUserPicked(
    1. List<DateTime>
    ),
})

Constructs a MonthlyView widget.

Implementation

const MonthlyView({
  super.key,
  required this.selectedMonth,
  this.decoration,
  this.markedDaysList,
  this.weekNameHeaderStyle,
  this.defaultChild,
  this.userPickedDecoration,
  this.userPickedChild,
  this.cellPadding,
  required this.onUserPicked,
});