HVResponse constructor

HVResponse({
  1. String? imageUri,
  2. String? fullImageUri,
  3. String? videoUri,
  4. Map? apiResult,
  5. Map? apiHeaders,
  6. String? retakeMessage,
  7. String? action,
  8. Map? activeLivenessResult,
  9. List? retakeAttemptResponses,
  10. String? rawBarcode,
})

Creates an instance of HVResponse.

Parameters:

  • imageUri: The URI of the image associated with the response.
  • fullImageUri: The URI of the full image associated with the response.
  • videoUri: The URI of the video associated with the response.
  • apiResult: The API result returned in the response.
  • apiHeaders: The headers received in the API response.
  • retakeMessage: The retake message associated with the response.
  • action: The action associated with the response.
  • activeLivenessResult: The active liveness result associated with the response.
  • retakeAttemptResponses: The list of retake attempt responses.
  • rawBarcode: The barcode associated with the response.

Implementation

HVResponse({
  this.imageUri,
  this.fullImageUri,
  this.videoUri,
  this.apiResult,
  this.apiHeaders,
  this.retakeMessage,
  this.action,
  this.activeLivenessResult,
  this.retakeAttemptResponses,
  this.rawBarcode,
});