WeekDayTile constructor

const WeekDayTile({
  1. Key? key,
  2. required int dayIndex,
  3. Color backgroundColor = Constants.white,
  4. bool displayBorder = true,
  5. TextStyle? textStyle,
  6. String weekDayStringBuilder(
    1. int
    )?,
})

Title for week day in month view.

Implementation

const WeekDayTile({
  Key? key,
  required this.dayIndex,
  this.backgroundColor = Constants.white,
  this.displayBorder = true,
  this.textStyle,
  this.weekDayStringBuilder,
}) : super(key: key);