YearLog constructor

YearLog({
  1. required int year,
  2. required List<MonthLog> months,
})

Implementation

YearLog({
  required this.year,
  required this.months,
});