alwaysUse24HourFormat property
The setting indicating whether time should always be shown in the 24-hour format.
Accessing this value returns the value contained in the
PlatformDispatcher singleton, so instead of getting it from here, you
should consider getting it from
WidgetsBinding.instance.platformDispatcher
instead (or, when
WidgetsBinding
isn't available, from PlatformDispatcher.instance). The
reason this value forwards to the PlatformDispatcher is to provide
convenience for applications that only use a single main window.
This option is used by showTimePicker.
Implementation
bool get alwaysUse24HourFormat => platformDispatcher.alwaysUse24HourFormat;