JsonIntlDelegate constructor

const JsonIntlDelegate({
  1. List<String>? availableLocales,
  2. String base = 'assets/intl',
  3. bool debug = false,
})

Create the factory responsible of loading the language files

Implementation

const JsonIntlDelegate({
  this.availableLocales,
  this.base = 'assets/intl',
  this.debug = false,
});