DateLocalizationLabel constructor

const DateLocalizationLabel({
  1. String yearLabel = 'years ago',
  2. String monthLabel = 'months ago',
  3. String dayLabel = 'days ago',
  4. String hourLabel = 'hours ago',
  5. String minuteLabel = 'minutes ago',
  6. String secondLabel = 'seconds ago',
})

Implementation

const DateLocalizationLabel({
  this.yearLabel = 'years ago',
  this.monthLabel = 'months ago',
  this.dayLabel = 'days ago',
  this.hourLabel = 'hours ago',
  this.minuteLabel = 'minutes ago',
  this.secondLabel = 'seconds ago',
});