CuReSignUpScreen constructor

const CuReSignUpScreen({
  1. Key? key,
  2. String? title,
  3. String? description,
  4. Widget? content,
  5. List<CuReAuthType>? thirdPartAuthTypes,
  6. dynamic onThirdPartSignUp(
    1. CuReAuthType
    )?,
  7. required Function onSignUp,
  8. required Function onSignIn,
  9. String? termsOfServiceUrl,
  10. String? privacyPolicyUrl,
  11. bool? signUpEnabled,
  12. bool? isCreating,
  13. bool? emailNotConfirmed,
  14. Function? onEmailVerificationResend,
  15. Function? onSignInAgain,
  16. Image? background,
})

Implementation

const CuReSignUpScreen({
  super.key,
  this.title,
  this.description,
  this.content,
  this.logo,
  this.thirdPartAuthTypes,
  this.onThirdPartSignUp,
  required this.onSignUp,
  required this.onSignIn,
  this.termsOfServiceUrl,
  this.privacyPolicyUrl,
  this.signUpEnabled,
  this.isCreating,
  this.emailNotConfirmed,
  this.onEmailVerificationResend,
  this.onSignInAgain,
  this.background,
});