ProductDetailsResponse constructor

ProductDetailsResponse({
  1. required List<ProductDetails> productDetails,
  2. required List<String> notFoundIDs,
  3. IAPError? error,
})

Creates a new ProductDetailsResponse with the provided response details.

Implementation

ProductDetailsResponse(
    {required this.productDetails, required this.notFoundIDs, this.error});