MonthContainer constructor
const
MonthContainer({})
Creates a MonthContainer with the specified properties.
The month, fillColor, borderColor, and textColor parameters are required.
Implementation
const MonthContainer({
Key? key,
required this.month,
required this.fillColor,
required this.borderColor,
required this.textColor,
required this.textStyle,
}) : super(key: key);