LoginMessages constructor

LoginMessages({
  1. String? userHint,
  2. String passwordHint = defaultPasswordHint,
  3. String confirmPasswordHint = defaultConfirmPasswordHint,
  4. String forgotPasswordButton = defaultForgotPasswordButton,
  5. String loginButton = defaultLoginButton,
  6. String signupButton = defaultSignupButton,
  7. String recoverPasswordButton = defaultRecoverPasswordButton,
  8. String recoverPasswordIntro = defaultRecoverPasswordIntro,
  9. String recoverPasswordDescription = defaultRecoverPasswordDescription,
  10. String goBackButton = defaultGoBackButton,
  11. String confirmPasswordError = defaultConfirmPasswordError,
  12. String recoverPasswordSuccess = defaultRecoverPasswordSuccess,
  13. String flushbarTitleError = defaultflushbarTitleError,
  14. String flushbarTitleSuccess = defaultflushbarTitleSuccess,
  15. String signUpSuccess = defaultSignUpSuccess,
  16. String providersTitleFirst = defaultProvidersTitleFirst,
  17. String providersTitleSecond = defaultProvidersTitleSecond,
  18. String additionalSignUpSubmitButton = defaultAdditionalSignUpSubmitButton,
  19. String additionalSignUpFormDescription = defaultAdditionalSignUpFormDescription,
  20. String confirmSignupIntro = defaultConfirmSignupIntro,
  21. String confirmationCodeHint = defaultConfirmationCodeHint,
  22. String confirmationCodeValidationError = defaultConfirmationCodeValidationError,
  23. String resendCodeButton = defaultResendCodeButton,
  24. String resendCodeSuccess = defaultResendCodeSuccess,
  25. String confirmSignupButton = defaultConfirmSignupButton,
  26. String confirmSignupSuccess = defaultConfirmSignupSuccess,
  27. String confirmRecoverIntro = defaultConfirmRecoverIntro,
  28. String recoveryCodeHint = defaultRecoveryCodeHint,
  29. String recoveryCodeValidationError = defaultRecoveryCodeValidationError,
  30. String setPasswordButton = defaultSetPasswordButton,
  31. String confirmRecoverSuccess = defaultConfirmRecoverSuccess,
  32. String recoverCodePasswordDescription = defaultRecoverCodePasswordDescription,
})

Implementation

LoginMessages({
  this.userHint,
  this.passwordHint = defaultPasswordHint,
  this.confirmPasswordHint = defaultConfirmPasswordHint,
  this.forgotPasswordButton = defaultForgotPasswordButton,
  this.loginButton = defaultLoginButton,
  this.signupButton = defaultSignupButton,
  this.recoverPasswordButton = defaultRecoverPasswordButton,
  this.recoverPasswordIntro = defaultRecoverPasswordIntro,
  this.recoverPasswordDescription = defaultRecoverPasswordDescription,
  this.goBackButton = defaultGoBackButton,
  this.confirmPasswordError = defaultConfirmPasswordError,
  this.recoverPasswordSuccess = defaultRecoverPasswordSuccess,
  this.flushbarTitleError = defaultflushbarTitleError,
  this.flushbarTitleSuccess = defaultflushbarTitleSuccess,
  this.signUpSuccess = defaultSignUpSuccess,
  this.providersTitleFirst = defaultProvidersTitleFirst,
  this.providersTitleSecond = defaultProvidersTitleSecond,
  this.additionalSignUpSubmitButton = defaultAdditionalSignUpSubmitButton,
  this.additionalSignUpFormDescription =
      defaultAdditionalSignUpFormDescription,
  this.confirmSignupIntro = defaultConfirmSignupIntro,
  this.confirmationCodeHint = defaultConfirmationCodeHint,
  this.confirmationCodeValidationError =
      defaultConfirmationCodeValidationError,
  this.resendCodeButton = defaultResendCodeButton,
  this.resendCodeSuccess = defaultResendCodeSuccess,
  this.confirmSignupButton = defaultConfirmSignupButton,
  this.confirmSignupSuccess = defaultConfirmSignupSuccess,
  this.confirmRecoverIntro = defaultConfirmRecoverIntro,
  this.recoveryCodeHint = defaultRecoveryCodeHint,
  this.recoveryCodeValidationError = defaultRecoveryCodeValidationError,
  this.setPasswordButton = defaultSetPasswordButton,
  this.confirmRecoverSuccess = defaultConfirmRecoverSuccess,
  this.recoverCodePasswordDescription = defaultRecoverCodePasswordDescription,
});