SuccessPurchase constructor

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

Implementation

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