LocalizationOptions constructor

LocalizationOptions(
  1. LocalisationCode languageCode, {
  2. String ok = "Ok",
  3. String cancel = "Cancel",
  4. String help = "Aide",
  5. String remainingTime = "Temps restant",
  6. String emptyField = "Se champ est obligatoire",
  7. String invalidEmail = "Email invalide",
  8. String invalidPassword = "Mot de passe invalide",
  9. String invalidCharacterNumber = "Nombre de caractères invalide",
  10. String invalidPhone = "Numéro invalide",
  11. String invalidFormat = "Format invalide",
  12. String invalidUrl = "Adresse invalide",
})

Implementation

LocalizationOptions(this.languageCode,
    {this.ok = "Ok",
    this.cancel = "Cancel",
    this.help = "Aide",
    this.remainingTime = "Temps restant",
    this.emptyField = "Se champ est obligatoire",
    this.invalidEmail = "Email invalide",
    this.invalidPassword = "Mot de passe invalide",
    this.invalidCharacterNumber = "Nombre de caractères invalide",
    this.invalidPhone = "Numéro invalide",
    this.invalidFormat = "Format invalide",
    this.invalidUrl = "Adresse invalide"});