IssueBillingKeyResponse constructor

IssueBillingKeyResponse({
  1. required String transactionType,
  2. required String billingKey,
  3. String? billingIssueToken,
  4. String? code,
  5. String? message,
  6. String? pgCode,
  7. String? pgMessage,
})

Implementation

IssueBillingKeyResponse({
  required this.transactionType,
  required this.billingKey,
  this.billingIssueToken,
  this.code,
  this.message,
  this.pgCode,
  this.pgMessage,
});