narrowWeekdays property

  1. @override
List<String> narrowWeekdays
override

List of week day names in narrow format, usually 1- or 2-letter abbreviations of full names.

The list begins with the value corresponding to Sunday and ends with Saturday. Use firstDayOfWeekIndex to find the first day of week in this list.

Examples:

  • US English: S, M, T, W, T, F, S
  • Russian: вс, пн, вт, ср, чт, пт, сб - notice that the list begins with вс (Sunday) even though the first day of week for Russian is Monday.

Implementation

@override
List<String> get narrowWeekdays {
  return _longDateFormat.dateSymbols.NARROWWEEKDAYS;
}