PlanRequestMessage constructor

PlanRequestMessage({
  1. String? name,
  2. String? uniqueIdentifier,
  3. int? cycle,
  4. String? intervalType,
  5. String? currencyTypeName,
  6. int? valueInCents,
  7. String? paymentMethod,
  8. List<PlanPrice>? prices,
  9. List<PlanFeature>? features,
})

Implementation

PlanRequestMessage({
  this.name,
  this.uniqueIdentifier,
  this.cycle,
  this.intervalType,
  this.currencyTypeName,
  this.valueInCents,
  this.paymentMethod,
  this.prices,
  this.features,
});