LoginTranslations constructor
const
LoginTranslations({ - String emailEmpty = 'Email is required',
- String passwordEmpty = 'Password is required',
- String emailInvalid = 'Enter a valid email address',
- String loginButton = 'Login',
- String forgotPasswordButton = 'Forgot password?',
- String requestForgotPasswordButton = 'Send link',
- 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',
});