LoginParams constructor

LoginParams({
  1. required AuthConnection authConnection,
  2. String? authConnectionId,
  3. String? groupedAuthConnectionId,
  4. String? appState,
  5. MFALevel? mfaLevel,
  6. ExtraLoginOptions? extraLoginOptions,
  7. String? dappShare,
  8. Curve? curve = Curve.secp256k1,
  9. String? dappUrl,
  10. String? loginHint,
  11. String? idToken,
})

Implementation

LoginParams({
  required this.authConnection,
  this.authConnectionId,
  this.groupedAuthConnectionId,
  this.appState,
  this.mfaLevel,
  this.extraLoginOptions,
  this.dappShare,
  this.curve = Curve.secp256k1,
  this.dappUrl,
  this.loginHint,
  this.idToken,
});