RegisterConfig constructor

const RegisterConfig({
  1. String title = 'Register',
  2. Widget? firstNamePrefix,
  3. Widget? lastNamePrefix,
  4. Widget? emailPrefix,
  5. Widget? passwordPrefix,
  6. Widget? confirmPasswordPrefix,
  7. String subtitle = 'Enter your details to create an account',
  8. String buttonLabel = 'Create account',
  9. String alreadyHaveAccountLabel = 'Already have an account?',
  10. 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',
});