IdentityVerificationResponse constructor

IdentityVerificationResponse({
  1. required String transactionType,
  2. required String identityVerificationId,
  3. required String identityVerificationTxId,
  4. String? code,
  5. String? message,
  6. String? pgCode,
  7. String? pgMessage,
})

Implementation

IdentityVerificationResponse({
  required this.transactionType,
  required this.identityVerificationId,
  required this.identityVerificationTxId,
  this.code,
  this.message,
  this.pgCode,
  this.pgMessage,
});