AuthNextSignInStep constructor

const AuthNextSignInStep({
  1. Map<String, String>? additionalInfo,
  2. AuthCodeDeliveryDetails? codeDeliveryDetails,
  3. required AuthSignInStep signInStep,
  4. List<AuthUserAttributeKey> missingAttributes = const [],
  5. Set<MfaType>? allowedMfaTypes,
  6. TotpSetupDetails? totpSetupDetails,
})

Implementation

const AuthNextSignInStep({
  super.additionalInfo,
  super.codeDeliveryDetails,
  required this.signInStep,
  this.missingAttributes = const [],
  this.allowedMfaTypes,
  this.totpSetupDetails,
});