DateSymbols constructor

DateSymbols({String NAME, List<String> ERAS, List<String> ERANAMES, List<String> NARROWMONTHS, List<String> STANDALONENARROWMONTHS, List<String> MONTHS, List<String> STANDALONEMONTHS, List<String> SHORTMONTHS, List<String> STANDALONESHORTMONTHS, List<String> WEEKDAYS, List<String> STANDALONEWEEKDAYS, List<String> SHORTWEEKDAYS, List<String> STANDALONESHORTWEEKDAYS, List<String> NARROWWEEKDAYS, List<String> STANDALONENARROWWEEKDAYS, List<String> SHORTQUARTERS, List<String> QUARTERS, List<String> AMPMS, String ZERODIGIT, List<String> DATEFORMATS, List<String> TIMEFORMATS, Map<String, String> AVAILABLEFORMATS, int FIRSTDAYOFWEEK, List<int> WEEKENDRANGE, int FIRSTWEEKCUTOFFDAY, List<String> DATETIMEFORMATS })

Implementation

DateSymbols(
    {this.NAME,
    this.ERAS,
    this.ERANAMES,
    this.NARROWMONTHS,
    this.STANDALONENARROWMONTHS,
    this.MONTHS,
    this.STANDALONEMONTHS,
    this.SHORTMONTHS,
    this.STANDALONESHORTMONTHS,
    this.WEEKDAYS,
    this.STANDALONEWEEKDAYS,
    this.SHORTWEEKDAYS,
    this.STANDALONESHORTWEEKDAYS,
    this.NARROWWEEKDAYS,
    this.STANDALONENARROWWEEKDAYS,
    this.SHORTQUARTERS,
    this.QUARTERS,
    this.AMPMS,
    this.ZERODIGIT,
    // TODO(alanknight): These formats are taken from Closure,
    // where there's only a fixed set of available formats.
    // Here we have the patterns separately. These should
    // either be used, or removed.
    this.DATEFORMATS,
    this.TIMEFORMATS,
    this.AVAILABLEFORMATS,
    this.FIRSTDAYOFWEEK,
    this.WEEKENDRANGE,
    this.FIRSTWEEKCUTOFFDAY,
    this.DATETIMEFORMATS});