Data constructor

Data({
  1. String? sessionId,
  2. int? transactionId,
  3. String? referenceId,
  4. String? via,
  5. String? channel,
  6. String? paymentNo,
  7. String? paymentName,
  8. int? total,
  9. int? fee,
  10. String? expired,
})

Implementation

Data(
    {this.sessionId,
      this.transactionId,
      this.referenceId,
      this.via,
      this.channel,
      this.paymentNo,
      this.paymentName,
      this.total,
      this.fee,
      this.expired});