InternationalizationDelegate constructor
InternationalizationDelegate({})
Implementation
InternationalizationDelegate({
required List<Locale> suportedLocales,
String translationsPath = "assets/translations/",
this.addTranslations,
}) : assert(
suportedLocales.isNotEmpty,
"suportedLocales can't be null or empty",
),
_translationsPath = translationsPath.endsWith('/')
? translationsPath
: '$translationsPath/',
_suportedLocales = suportedLocales;