InvalidPurchase constructor

InvalidPurchase({
  1. String? purchaseId,
  2. String? invoiceId,
  3. String? orderId,
  4. int? quantity,
  5. String? productId,
  6. int? errorCode,
})

Implementation

InvalidPurchase({
  this.purchaseId,
  this.invoiceId,
  this.orderId,
  this.quantity,
  this.productId,
  this.errorCode,
});