TrackPurchaseParameters constructor

TrackPurchaseParameters({
  1. required String orderId,
  2. double? value,
  3. String? currencyCode,
  4. String? countryCode,
  5. Map<String, String>? additionalInfo,
})

Implementation

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