SubscriptionOption constructor
const
SubscriptionOption(
- String id,
- String storeProductId,
- String productId,
- List<
PricingPhase> pricingPhases, - List<
String> tags, - bool isBasePlan,
- Period? billingPeriod,
- bool isPrepaid,
- PricingPhase? fullPricePhase,
- PricingPhase? freePhase,
- PricingPhase? introPhase,
- String? presentedOfferingIdentifier,
Implementation
const factory SubscriptionOption(
/// Identifier of the subscription option
/// If this SubscriptionOption represents a base plan, this will be the basePlanId.
/// If it represents an offer, it will be {basePlanId}:{offerId}
String id,
/// Identifier of the StoreProduct associated with this SubscriptionOption
/// This will be {subId}:{basePlanId}
String storeProductId,
/// Identifer of the subscription associated with this SubsriptionOption
/// This will be {subId}
String productId,
/// Pricing phases defining a user's payment plan for the product over time.
List<PricingPhase> pricingPhases,
/// Tags defined on the base plan or offer.
List<String> tags,
/// True if this SubscriptionOption represents a Google subscription base plan (rather than an offer).
bool isBasePlan,
/// The subscription period of fullPricePhase (after free and intro trials).
Period? billingPeriod,
/// True if the subscription is pre-paid.
bool isPrepaid,
/// The full price PricingPhase of the subscription.
/// Looks for the last price phase of the SubscriptionOption.
PricingPhase? fullPricePhase,
/// The free trial PricingPhase of the subscription.
/// Looks for the first pricing phase of the SubscriptionOption where amountMicros is 0.
/// There can be a freeTrialPhase and an introductoryPhase in the same SubscriptionOption.
PricingPhase? freePhase,
/// The intro trial PricingPhase of the subscription.
/// Looks for the first pricing phase of the SubscriptionOption where amountMicros is greater than 0.
/// There can be a freeTrialPhase and an introductoryPhase in the same SubscriptionOption.
PricingPhase? introPhase,
// Offering identifier the subscriptioni option was presented from
String? presentedOfferingIdentifier,
) = _SubscriptionOption;