Sorts this iterable chronologically.
List<Hora> get sortedChronologically { final list = toList()..sort((a, b) => a.compareTo(b)); return list; }