hourStyleExtensionString property
String
get
hourStyleExtensionString
The extension string used in ICU locale identifiers for this clock style.
The three possible values are h11, h12, and h23.
Implementation
String get hourStyleExtensionString => switch (this) {
ClockStyle.zeroToEleven => 'h11',
ClockStyle.oneToTwelve => 'h12',
ClockStyle.zeroToTwentyThree => 'h23',
};