LoginTranslations constructor

const LoginTranslations({
  1. String emailEmpty = 'Email is required',
  2. String passwordEmpty = 'Password is required',
  3. String emailInvalid = 'Enter a valid email address',
  4. String loginButton = 'Login',
  5. String forgotPasswordButton = 'Forgot password?',
  6. String requestForgotPasswordButton = 'Send link',
  7. String registrationButton = 'Create Account',
})

Implementation

const LoginTranslations({
  this.emailEmpty = 'Email is required',
  this.passwordEmpty = 'Password is required',
  this.emailInvalid = 'Enter a valid email address',
  this.loginButton = 'Login',
  this.forgotPasswordButton = 'Forgot password?',
  this.requestForgotPasswordButton = 'Send link',
  this.registrationButton = 'Create Account',
});