fullWeekdays top-level constant

Map<int, String> const fullWeekdays

A map of integers to full weekday names.

Implementation

const fullWeekdays = <int, String>{
  1: 'Monday',
  2: 'Tuesday',
  3: 'Wednesday',
  4: 'Thursday',
  5: 'Friday',
  6: 'Saturday',
  7: 'Sunday',
};