FdcCommonTranslations constructor

const FdcCommonTranslations({
  1. String ok = 'OK',
  2. String yes = 'Yes',
  3. String no = 'No',
  4. String cancel = 'Cancel',
  5. String apply = 'Apply',
  6. String clear = 'Clear',
  7. String search = 'Search',
  8. String all = 'All',
  9. String delete = 'Delete',
  10. String close = 'Close',
  11. String pickDate = 'Pick date',
  12. String lookup = 'Lookup',
  13. String noResults = 'No results',
})

Creates common translations.

Implementation

const FdcCommonTranslations({
  this.ok = 'OK',
  this.yes = 'Yes',
  this.no = 'No',
  this.cancel = 'Cancel',
  this.apply = 'Apply',
  this.clear = 'Clear',
  this.search = 'Search',
  this.all = 'All',
  this.delete = 'Delete',
  this.close = 'Close',
  this.pickDate = 'Pick date',
  this.lookup = 'Lookup',
  this.noResults = 'No results',
});