DatePickerDateTimeOrder enum Null safety

Determines the order of the columns inside CupertinoDatePicker in time and date time mode.

Inheritance

Constructors

DatePickerDateTimeOrder()
const

Values

date_time_dayPeriod → const DatePickerDateTimeOrder

Order of the columns, from left to right: date, hour, minute, am/pm.

Example: Fri Aug 31 | 02 | 08 | PM.

DatePickerDateTimeOrder()
date_dayPeriod_time → const DatePickerDateTimeOrder

Order of the columns, from left to right: date, am/pm, hour, minute.

Example: Fri Aug 31 | PM | 02 | 08.

DatePickerDateTimeOrder()
time_dayPeriod_date → const DatePickerDateTimeOrder

Order of the columns, from left to right: hour, minute, am/pm, date.

Example: 02 | 08 | PM | Fri Aug 31.

DatePickerDateTimeOrder()
dayPeriod_time_date → const DatePickerDateTimeOrder

Order of the columns, from left to right: am/pm, hour, minute, date.

Example: PM | 02 | 08 | Fri Aug 31.

DatePickerDateTimeOrder()

Properties

hashCode int
The hash code for this object.
read-onlyinherited
index int
A numeric identifier for the enumerated value.
read-onlyinherited
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<DatePickerDateTimeOrder>
A constant List of the values in this enum, in order of their declaration.
[date_time_dayPeriod, date_dayPeriod_time, time_dayPeriod_date, dayPeriod_time_date]