enum AdventOfCodeDays { day1(title: "Day 1"), day2(title: "Day 2"),; const AdventOfCodeDays({ required this.title }); final String title; }