dayPeriod property

Implementation

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

Implementation

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