smallWeekdays top-level constant

Map<int, String> const smallWeekdays

A map of integers to abbreviated weekday names.

Implementation

const smallWeekdays = <int, String>{
  1: 'Mon',
  2: 'Tue',
  3: 'Wed',
  4: 'Thu',
  5: 'Fri',
  6: 'Sat',
  7: 'Sun',
};