PricingScheme constructor

PricingScheme({
  1. int? version,
  2. Money? fixedPrice,
  3. PricingModel? pricingModel,
  4. List<PricingTier>? tiers,
  5. String? createTime,
  6. String? updateTime,
})

Implementation

PricingScheme(
    {this.version,
    this.fixedPrice,
    this.pricingModel,
    this.tiers,
    this.createTime,
    this.updateTime});