SelphiFaceResult constructor

const SelphiFaceResult(
  1. {required SelphiFaceFinishStatus finishStatus,
  2. required SelphiFaceErrorType errorDiagnostic,
  3. String? errorMessage,
  4. String? templateRaw,
  5. required double eyeGlassesScore,
  6. required double templateScore,
  7. String? qrData,
  8. String? bestImage,
  9. String? bestImageCropped,
  10. String? bestImageTemplateRaw}
)

Implementation

const SelphiFaceResult({
  required this.finishStatus,
  required this.errorDiagnostic,
  this.errorMessage,
  this.templateRaw,
  required this.eyeGlassesScore,
  required this.templateScore,
  this.qrData,
  this.bestImage,
  this.bestImageCropped,
  this.bestImageTemplateRaw,
});