weekdayMap constant

Map<int, String> const weekdayMap

Implementation

static const Map<int, String> weekdayMap = {
  1: 'Пн',
  2: 'Вт',
  3: 'Ср',
  4: 'Чт',
  5: 'Пт',
  6: 'Сб',
  7: 'Вс'
};