SuccessPurchase constructor

SuccessPurchase({
  1. String? finishCode,
  2. String? orderId,
  3. required String purchaseId,
  4. required String productId,
  5. String? invoiceId,
  6. String? subscriptionToken,
})

Implementation

SuccessPurchase({
  this.finishCode,
  this.orderId,
  required this.purchaseId,
  required this.productId,
  this.invoiceId,
  this.subscriptionToken,
});