Transaction constructor

Transaction({
  1. String? idBilling,
  2. String? billingData,
  3. String? paymentTypeCode,
  4. String? flag,
  5. String? generatedDate,
  6. String? paymentDate,
  7. String? clientRefnum,
})

Implementation

Transaction(
    {this.idBilling,
    this.billingData,
    this.paymentTypeCode,
    this.flag,
    this.generatedDate,
    this.paymentDate,
    this.clientRefnum});