RegisterConfig constructor
const
RegisterConfig({
- String title = 'Register',
- Widget? firstNamePrefix,
- Widget? lastNamePrefix,
- Widget? emailPrefix,
- Widget? passwordPrefix,
- Widget? confirmPasswordPrefix,
- String subtitle = 'Enter your details to create an account',
- String buttonLabel = 'Create account',
- String alreadyHaveAccountLabel = 'Already have an account?',
- String loginLabel = 'Login',
Implementation
const RegisterConfig({
this.title = 'Register',
this.firstNamePrefix,
this.lastNamePrefix,
this.emailPrefix,
this.passwordPrefix,
this.confirmPasswordPrefix,
this.subtitle = 'Enter your details to create an account',
this.buttonLabel = 'Create account',
this.alreadyHaveAccountLabel = 'Already have an account?',
this.loginLabel = 'Login',
});