AssertionResponse constructor

AssertionResponse(
  1. String clientDataJSON,
  2. String authenticatorData,
  3. String signature,
  4. String? userHandle,
)

Creates an assertion response from its fields.

Implementation

AssertionResponse(
  this.clientDataJSON,
  this.authenticatorData,
  this.signature,
  this.userHandle,
);