MonthContainer constructor

const MonthContainer({
  1. Key? key,
  2. required String month,
  3. required Color fillColor,
  4. required Color borderColor,
  5. required Color textColor,
  6. required TextStyle? textStyle,
})

Implementation

const MonthContainer({
  Key? key,
  required this.month,
  required this.fillColor,
  required this.borderColor,
  required this.textColor,
  required this.textStyle,
}) : super(key: key);