I18NextOptions constructor

const I18NextOptions({
  1. List<String>? fallbackNamespaces,
  2. String? namespaceSeparator,
  3. String? contextSeparator,
  4. String? pluralSeparator,
  5. String? keySeparator,
  6. String? interpolationPrefix,
  7. String? interpolationSuffix,
  8. String? formatSeparator,
  9. String? interpolationUnescapePrefix,
  10. String? interpolationUnescapeSuffix,
  11. Map<String, Object>? formatterValues,
  12. Map<String, ValueFormatter>? formats,
  13. String? optionsSeparator,
  14. String? optionValueSeparator,
  15. String? nestingPrefix,
  16. String? nestingSuffix,
  17. String? nestingSeparator,
  18. String? pluralSuffix,
  19. MissingKeyHandler? missingKeyHandler,
  20. ValueFormatter? missingInterpolationHandler,
  21. TranslationFailedHandler? translationFailedHandler,
  22. EscapeHandler? escape,
  23. bool? escapeValue,
})

Implementation

const I18NextOptions({
  this.fallbackNamespaces,
  this.namespaceSeparator,
  this.contextSeparator,
  this.pluralSeparator,
  this.keySeparator,
  this.interpolationPrefix,
  this.interpolationSuffix,
  this.formatSeparator,
  this.interpolationUnescapePrefix,
  this.interpolationUnescapeSuffix,
  this.formatterValues,
  this.formats,
  this.optionsSeparator,
  this.optionValueSeparator,
  this.nestingPrefix,
  this.nestingSuffix,
  this.nestingSeparator,
  this.pluralSuffix,
  this.missingKeyHandler,
  this.missingInterpolationHandler,
  this.translationFailedHandler,
  this.escape,
  this.escapeValue,
}) : super();