PurchaseParam constructor

PurchaseParam({
  1. required ProductDetails productDetails,
  2. String? applicationUserName,
})

Creates a new purchase parameter object with the given data.

Implementation

PurchaseParam({
  required this.productDetails,
  this.applicationUserName,
});