SubMerchant constructor

SubMerchant({
  1. String? merchantId,
  2. String? uniqueTransactionCode,
  3. String? amount,
  4. double? amountDouble,
  5. String? desc,
})

Implementation

SubMerchant({
  this.merchantId,
  this.uniqueTransactionCode,
  this.amount,
  this.amountDouble,
  this.desc,
});