formattedPrice property
String
get
formattedPrice
Returns formatted price for the payment cycle, including its currency sign.
Implementation
String get formattedPrice {
if (googlePlayObj != null) {
return googlePlayObj!.formattedPrice;
}
if (appStoreObj != null) {
return appStoreObj!.price;
}
throw UnsupportedError("Store not supported");
}