dayShort property

List<String> dayShort
read / write

Builds widgets showing abbreviated days of week. The first widget in the returned list corresponds to the first day of week for the current locale.

Examples:

┌ Sunday is the first day of week in the US (en_US)
|
S M T W T F S  <-- the returned list contains these widgets
_ _ _ _ _ 1 2
3 4 5 6 7 8 9

┌ But it's Monday in the UK (en_GB)
|
M T W T F S S  <-- the returned list contains these widgets
_ _ _ _ 1 2 3
4 5 6 7 8 9 10

Implementation

static List<String> dayShort = const [
  'شنبه',
  'یکشنبه',
  'دوشنبه',
  'سه شنبه',
  'چهارشنبه',
  'پنج شنبه',
  'جمعه',
]