PaymentEvent constructor

PaymentEvent({
  1. required String accountId,
  2. String? externalId,
  3. String? storeId,
  4. String? tag,
  5. String? status,
  6. PaymentValue? paymentValue,
  7. PaymentCoupon? paymentCoupon,
  8. List<PaymentMethod>? paymentMethods,
  9. EventLocation? location,
  10. List<PaymentAddress>? addresses,
  11. Map<String, Object>? properties,
})

Implementation

PaymentEvent({
  required this.accountId,
  this.externalId,
  this.storeId,
  this.tag,
  this.status,
  this.paymentValue,
  this.paymentCoupon,
  this.paymentMethods,
  this.location,
  this.addresses,
  this.properties,
});