CalendarConfig constructor

const CalendarConfig({
  1. String sameDay = '[Today at] LT',
  2. String nextDay = '[Tomorrow at] LT',
  3. String nextWeek = 'dddd [at] LT',
  4. String lastDay = '[Yesterday at] LT',
  5. String lastWeek = '[Last] dddd [at] LT',
  6. String sameElse = 'L',
})

Implementation

const CalendarConfig({
  this.sameDay = '[Today at] LT',
  this.nextDay = '[Tomorrow at] LT',
  this.nextWeek = 'dddd [at] LT',
  this.lastDay = '[Yesterday at] LT',
  this.lastWeek = '[Last] dddd [at] LT',
  this.sameElse = 'L',
});