SubscriptionData constructor

SubscriptionData({
  1. int? amount,
  2. String? currency,
  3. String? description,
  4. String? idClient,
  5. String? interval,
  6. String? intervalCount,
  7. String? name,
  8. int? trialDays,
})

Implementation

SubscriptionData({
  this.amount,
  this.currency,
  this.description,
  this.idClient,
  this.interval,
  this.intervalCount,
  this.name,
  this.trialDays,
});