TrackPurchaseParameters constructor

TrackPurchaseParameters({
  1. required String orderId,
  2. double? value,
  3. String? currencyCode,
  4. String? countryCode,
  5. double? shippingPrice,
  6. double? subtotal,
  7. List<PurchaseProduct>? products,
  8. Map<String, String>? additionalInfo,
})

Implementation

TrackPurchaseParameters({
  required this.orderId,
  this.value,
  this.currencyCode,
  this.countryCode,
  this.shippingPrice,
  this.subtotal,
  this.products,
  this.additionalInfo,
});