SignUpResult constructor

SignUpResult({
  1. required bool isSignUpComplete,
  2. required AuthNextSignUpStep nextStep,
})

Implementation

SignUpResult({required this.isSignUpComplete, required this.nextStep}) {
  this.isSignUpComplete = isSignUpComplete;
  this.nextStep = nextStep;
}