MonthModel constructor

MonthModel({
  1. required int index,
  2. required String name,
})

Implementation

MonthModel({
  required this.index,
  required this.name,
});