UserDetailsConfig constructor

const UserDetailsConfig({
  1. String title = 'Create your account',
  2. String subtitle = 'Enter your details to create an account',
  3. String buttonLabel = 'Create account',
  4. bool requireEmail = false,
  5. bool emailLookup = false,
  6. Widget? firstNamePrefix,
  7. Widget? lastNamePrefix,
  8. Widget? emailPrefix,
})

Implementation

const UserDetailsConfig({
  this.title = 'Create your account',
  this.subtitle = 'Enter your details to create an account',
  this.buttonLabel = 'Create account',
  this.requireEmail = false,
  this.emailLookup = false,
  this.firstNamePrefix,
  this.lastNamePrefix,
  this.emailPrefix,
});