I18nWeekCodes constructor

const I18nWeekCodes({
  1. String saturday = 'ش',
  2. String sunday = 'ی',
  3. String monday = 'د',
  4. String tuesday = 'س',
  5. String wednesday = 'چ',
  6. String thursday = 'پ',
  7. String friday = 'ج',
})

Implementation

const I18nWeekCodes({
  this.saturday = 'ش',
  this.sunday = 'ی',
  this.monday = 'د',
  this.tuesday = 'س',
  this.wednesday = 'چ',
  this.thursday = 'پ',
  this.friday = 'ج',
});