ProductSubscriptionCost constructor

ProductSubscriptionCost({
  1. Price? amount,
  2. String? period,
  3. String? periodLength,
})

Implementation

ProductSubscriptionCost({
  this.amount,
  this.period,
  this.periodLength,
});