TransactionData constructor

TransactionData({
  1. String? billingData,
  2. double? amount,
  3. List<String>? externalActionMessage,
  4. String? amountCurrency,
  5. String? id,
  6. String? methodName,
  7. String? method,
  8. String? createdDate,
  9. String? status,
  10. String? customFields,
  11. String? providerTransactionFields,
  12. String? customFormAnswers,
})

Implementation

TransactionData({
  this.billingData,
  this.amount,
  this.externalActionMessage,
  this.amountCurrency,
  this.id,
  this.methodName,
  this.method,
  this.createdDate,
  this.status,
  this.customFields,
  this.providerTransactionFields,
  this.customFormAnswers,
});