weekdayEntriesShort property

Iterable<MapEntry<int, String>> get weekdayEntriesShort

Iterates over all weekdays with their short names.

Implementation

Iterable<MapEntry<int, String>> get weekdayEntriesShort sync* {
  for (var i = 0; i <= 6; i++) {
    yield MapEntry(i, weekdayNameShort(i));
  }
}