MonthTitle constructor

const MonthTitle({
  1. required int month,
  2. List<String>? monthNames,
  3. TextStyle? style = const TextStyle(fontSize: 18, fontWeight: FontWeight.w600),
})

Implementation

const MonthTitle({
  required this.month,
  this.monthNames,
  this.style = const TextStyle(
    fontSize: 18,
    fontWeight: FontWeight.w600,
  ),
});