hourCycle property
HourCycle?
get
hourCycle
Implementation
_i3.HourCycle? get hourCycle => switch (_i5.getProperty(
this,
'hourCycle',
)) {
_i2.String name => _i3.HourCycle.values.byName(name),
_ => null
};
set
hourCycle
(HourCycle? value)
Implementation
set hourCycle(_i3.HourCycle? value) {
_i5.setProperty(
this,
'hourCycle',
value?.name ?? _i4.undefined,
);
}