AuthStrings constructor

AuthStrings({
  1. required String signInWithEmail,
  2. required String signInWithGoogle,
  3. required String signInAnonymous,
  4. required String understood,
  5. required String changePassword,
  6. required String cancel,
  7. required String accept,
  8. required String next,
  9. required String forgotPassword,
  10. required String weWillSendYouAnEmailToChangePassword,
  11. required String emailSentToChangePassword,
  12. required String emailRegisteredEnterPasswordNoticeMarkdown,
  13. required String privacyMarkdown,
  14. required String errorWeakPassword,
  15. required String errorInvalidEmail,
  16. required String errorEmailAlreadyInUse,
  17. required String errorWrongPassword,
  18. required String errorUserNotFound,
  19. required String errorUserDisabled,
  20. required String errorTooManyRequests,
  21. required String errorOperationNotAllowed,
  22. required String emailNotValid,
  23. required String emailCantBeEmpty,
  24. required String nameCantBeEmpty,
  25. required String passwordTooShort,
  26. required String email,
  27. required String passwordHint,
  28. required String passwordEmpty,
  29. required String nameHint,
  30. required String loginAppBarTitle,
})

Implementation

AuthStrings({
  required this.signInWithEmail,
  required this.signInWithGoogle,
  required this.signInAnonymous,
  required this.understood,
  required this.changePassword,
  required this.cancel,
  required this.accept,
  required this.next,
  required this.forgotPassword,
  required this.weWillSendYouAnEmailToChangePassword,
  required this.emailSentToChangePassword,
  required this.emailRegisteredEnterPasswordNoticeMarkdown,
  required this.privacyMarkdown,
  required this.errorWeakPassword,
  required this.errorInvalidEmail,
  required this.errorEmailAlreadyInUse,
  required this.errorWrongPassword,
  required this.errorUserNotFound,
  required this.errorUserDisabled,
  required this.errorTooManyRequests,
  required this.errorOperationNotAllowed,
  required this.emailNotValid,
  required this.emailCantBeEmpty,
  required this.nameCantBeEmpty,
  required this.passwordTooShort,
  required this.email,
  required this.passwordHint,
  required this.passwordEmpty,
  required this.nameHint,
  required this.loginAppBarTitle,
});