shortWeekDays property

List<String> get shortWeekDays

Short names for days of the week, starting with Sunday, e.g. 'Sun'.

Implementation

List<String> get shortWeekDays => localeName == ''
    ? const ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']
    : DateFormat.yMMMMd(localeName).dateSymbols.SHORTWEEKDAYS;