SelphIdResult constructor

const SelphIdResult(
  1. {required SelphIDFinishStatus finishStatus,
  2. required SelphIDErrorType errorType,
  3. String? errorMessage,
  4. required int timeoutStatus,
  5. String? frontDocumentImage,
  6. String? backDocumentImage,
  7. String? faceImage,
  8. String? tokenFrontDocument,
  9. String? tokenBackDocument,
  10. String? tokenFaceImage,
  11. String? documentData,
  12. String? tokenOCR,
  13. String? documentCaptured,
  14. required double matchingSidesScore}
)

Implementation

const SelphIdResult({
  required this.finishStatus,
  required this.errorType,
  this.errorMessage,
  required this.timeoutStatus,
  this.frontDocumentImage,
  this.backDocumentImage,
  this.faceImage,
  this.tokenFrontDocument,
  this.tokenBackDocument,
  this.tokenFaceImage,
  this.documentData,
  this.tokenOCR,
  this.documentCaptured,
  required this.matchingSidesScore,
});