Success constructor

Success({
  1. String? orderId,
  2. required String purchaseId,
  3. required String productId,
  4. required String invoiceId,
  5. required FlutterPurchaseType purchaseType,
  6. required bool sandbox,
})

Implementation

Success({
  this.orderId,
  required this.purchaseId,
  required this.productId,
  required this.invoiceId,
  required this.purchaseType,
  required this.sandbox,
});