PostPasskeyAuthVerify constructor

PostPasskeyAuthVerify(
  1. String flowId,
  2. Map<String, dynamic> credential, {
  3. bool permanent = true,
  4. dynamic onSuccess(
    1. Response
    )?,
  5. dynamic onError(
    1. ApiError
    )?,
})

Implementation

PostPasskeyAuthVerify(
  this.flowId,
  this.credential, {
  this.permanent = true,
  this.onSuccess,
  this.onError,
}) : super("$_PATH", {
        "flowId": flowId,
        "permanent": permanent,
        "credential": credential,
      });