verifyAuthentication abstract method

  1. @POST.new("/passkey/verify-authentication")
Future<Result<SessionResponse>> verifyAuthentication({
  1. @Body.new(nullToAbsent: true) Map<String, dynamic> body = const {},
})

POST /passkey/verify-authentication — sets the session on success.

body must contain response (AuthenticationResponseJSON).

Implementation

@POST("/passkey/verify-authentication")
Future<Result<SessionResponse>> verifyAuthentication({
  @Body(nullToAbsent: true) Map<String, dynamic> body = const {},
});