SignInResult constructor

SignInResult({
  1. required bool isSignedIn,
  2. AuthNextSignInStep? nextStep,
})

Implementation

SignInResult({required this.isSignedIn, this.nextStep}) {
  this.isSignedIn = isSignedIn;
  this.nextStep = nextStep;
}