HyperKycResult constructor

HyperKycResult({
  1. HyperKycStatus? status,
  2. String? transactionId,
  3. Map? details,
  4. int? errorCode,
  5. String? errorMessage,
  6. String? latestModule,
})

Complete response dump which will be used in HyperKyc demo app only (Demo purpose only) Constructor

Implementation

//String? _rawDataJsonString;

/// Constructor
HyperKycResult({
  this.status,
  this.transactionId,
  this.details,
  this.errorCode,
  this.errorMessage,
  this.latestModule,
  //String? rawDataJsonString,
}) {
  //_rawDataJsonString = rawDataJsonString;
}