LocalisationSettings constructor

const LocalisationSettings({
  1. String isoLanguageCode = 'za',
  2. String isoCurrencyCode = 'ZAR',
  3. String isoCountryCode = 'RSA',
  4. String isoTimezone = '+02:00',
  5. String dateFormat = 'dd-MM-yyyy',
  6. String timeFormat = 'HH:mm',
})

Implementation

const LocalisationSettings({
  this.isoLanguageCode = 'za',
  this.isoCurrencyCode = 'ZAR',
  this.isoCountryCode = 'RSA',
  this.isoTimezone = '+02:00',
  this.dateFormat = 'dd-MM-yyyy',
  this.timeFormat = 'HH:mm',
});