FailureProductPurchaseResult constructor

FailureProductPurchaseResult({
  1. String? orderId,
  2. String? purchaseId,
  3. String? productId,
  4. String? invoiceId,
  5. int? quantity,
  6. String? subscriptionToken,
  7. required String errorMessage,
})

Implementation

FailureProductPurchaseResult({
  this.orderId,
  this.purchaseId,
  this.productId,
  this.invoiceId,
  this.quantity,
  this.subscriptionToken,
  required this.errorMessage,
});