static Map<int, int> listOfYear({ required int from, required int to, }) { return { for (var i = from; i <= to; i++) i: i, }; }