GooglePlayPurchaseParam constructor

GooglePlayPurchaseParam({
  1. required ProductDetails productDetails,
  2. String? applicationUserName,
  3. ChangeSubscriptionParam? changeSubscriptionParam,
})

Creates a new GooglePlayPurchaseParam object with the given data.

Implementation

GooglePlayPurchaseParam({
  required super.productDetails,
  super.applicationUserName,
  this.changeSubscriptionParam,
});