DateTimeFormatOptions constructor

const DateTimeFormatOptions({
  1. DateFormatStyle? dateFormatStyle,
  2. TimeFormatStyle? timeFormatStyle,
  3. Calendar? calendar,
  4. DayPeriod? dayPeriod,
  5. NumberingSystem? numberingSystem,
  6. String? timeZone,
  7. ClockStyle? clockstyle,
  8. WeekDayStyle? weekday,
  9. EraStyle? era,
  10. TimeStyle? year,
  11. MonthStyle? month,
  12. TimeStyle? day,
  13. TimeStyle? hour,
  14. TimeStyle? minute,
  15. TimeStyle? second,
  16. int? fractionalSecondDigits,
  17. TimeZoneName? timeZoneName,
  18. FormatMatcher formatMatcher = FormatMatcher.bestfit,
  19. LocaleMatcher localeMatcher = LocaleMatcher.bestfit,
})

Implementation

const DateTimeFormatOptions({
  this.dateFormatStyle,
  this.timeFormatStyle,
  this.calendar,
  this.dayPeriod,
  this.numberingSystem,
  this.timeZone,
  this.clockstyle,
  this.weekday,
  this.era,
  this.year,
  this.month,
  this.day,
  this.hour,
  this.minute,
  this.second,
  this.fractionalSecondDigits,
  this.timeZoneName,
  this.formatMatcher = FormatMatcher.bestfit,
  this.localeMatcher = LocaleMatcher.bestfit,
});