DayHeaderStyle constructor

const DayHeaderStyle({
  1. Color backgroundColor = Colors.transparent,
  2. Color selectedBackgroundColor = Colors.black,
  3. Color dateInRangeBackgroundColor = Colors.black45,
  4. Color textColor = Colors.black,
  5. Color selectedTextColor = Colors.white,
  6. Color unavailableTextColor = Colors.grey,
})

Implementation

const DayHeaderStyle({
  this.backgroundColor = Colors.transparent,
  this.selectedBackgroundColor = Colors.black,
  this.dateInRangeBackgroundColor = Colors.black45,
  this.textColor = Colors.black,
  this.selectedTextColor = Colors.white,
  this.unavailableTextColor = Colors.grey,
});