Data constructor

Data({
  1. String? transactionId,
  2. String? status,
  3. String? paymentMethod,
  4. int? amount,
  5. String? currency,
  6. String? customerId,
  7. String? customerName,
  8. String? merchantId,
  9. String? merchantName,
  10. String? transactionDate,
  11. String? orderId,
})

Implementation

Data({
  this.transactionId,
  this.status,
  this.paymentMethod,
  this.amount,
  this.currency,
  this.customerId,
  this.customerName,
  this.merchantId,
  this.merchantName,
  this.transactionDate,
  this.orderId,
});