IdentificationResult constructor

IdentificationResult({
  1. required bool isValid,
  2. String? identifiedAt,
  3. required IdentificationMatch match,
})

Implementation

IdentificationResult({
  required this.isValid,
  this.identifiedAt,
  required this.match,
});