billingCycleCount property
int
get
billingCycleCount
Represents a pricing phase, describing how a user pays at a point in time.
Implementation
int get billingCycleCount {
if (googlePlayObj != null) {
return googlePlayObj!.billingCycleCount;
}
if (appStoreObj != null) {
return 1;
}
throw UnsupportedError("Store not supported");
}