hourCycle property

HourCycleOptions? get hourCycle

Implementation

_i3.HourCycleOptions? get hourCycle => switch (_i5.getProperty(
      this,
      'hourCycle',
    )) {
      _i2.String name => _i3.HourCycleOptions.values.byName(name),
      _ => null
    };
set hourCycle (HourCycleOptions? value)

Implementation

set hourCycle(_i3.HourCycleOptions? value) {
  _i5.setProperty(
    this,
    'hourCycle',
    value?.name ?? _i4.undefined,
  );
}