GlassfyProduct constructor

GlassfyProduct(
  1. String? title,
  2. String? description,
  3. String? identifier,
  4. String? basePlanId,
  5. num? price,
  6. String? currencyCode,
  7. String? period,
  8. GlassfyProductDiscount? introductoryPrice,
  9. List<GlassfyProductDiscount>? discounts,
)

Implementation

GlassfyProduct(
    this.title,
    this.description,
    this.identifier,
    this.basePlanId,
    this.price,
    this.currencyCode,
    this.period,
    this.introductoryPrice,
    this.discounts);