IdentificationResult constructor

IdentificationResult({
  1. required bool isValid,
  2. String? errorMessage,
  3. ErrorCode? typeCodeError,
})

Implementation

IdentificationResult({
  required this.isValid,
  this.errorMessage,
  this.typeCodeError,
});