Transaction constructor

Transaction({
  1. String? merchantReference,
  2. String? preferredAgent,
  3. String? productDescription,
  4. String? amount,
  5. String? currencyCode,
  6. String? paymentInfo,
  7. String? paymentExpiry,
  8. String? userDefined1,
  9. String? userDefined2,
  10. String? userDefined3,
  11. String? userDefined4,
  12. String? userDefined5,
})

Implementation

Transaction({
  this.merchantReference,
  this.preferredAgent,
  this.productDescription,
  this.amount,
  this.currencyCode,
  this.paymentInfo,
  this.paymentExpiry,
  this.userDefined1,
  this.userDefined2,
  this.userDefined3,
  this.userDefined4,
  this.userDefined5,
});