ApphudProduct constructor

ApphudProduct({
  1. required String productId,
  2. required String store,
  3. String? name,
  4. ProductDetailsWrapper? productDetails,
  5. String? paywallIdentifier,
  6. SKProductWrapper? skProduct,
  7. String? placementIdentifier,
})

Implementation

ApphudProduct({
  required this.productId,
  required this.store,
  this.name,
  this.productDetails,
  this.paywallIdentifier,
  this.skProduct,
  this.placementIdentifier,
});