HeaderStyle constructor

const HeaderStyle({
  1. TextStyle titleTextStyle = const TextStyle(fontSize: 22, fontWeight: FontWeight.w800),
  2. MonthFormats monthFormat = MonthFormats.FULL,
  3. Decoration? backgroundStyle,
  4. TextAlign textAlgin = TextAlign.center,
})

Implementation

const HeaderStyle({
  this.titleTextStyle = const TextStyle(
    fontSize: 22,
    fontWeight: FontWeight.w800,
  ),
  this.monthFormat = MonthFormats.FULL,
  this.backgroundStyle,
  this.textAlgin = TextAlign.center,
});