Iterates over all weekdays with their short names.
Iterable<MapEntry<int, String>> get weekdayEntriesShort sync* { for (var i = 0; i <= 6; i++) { yield MapEntry(i, weekdayNameShort(i)); } }