monthEntriesShort property

Iterable<MapEntry<int, String>> get monthEntriesShort

Iterates over all months with their short names.

Implementation

Iterable<MapEntry<int, String>> get monthEntriesShort sync* {
  for (var i = 1; i <= 12; i++) {
    yield MapEntry(i, monthNameShort(i));
  }
}