priceCurrencyCode property
String
get
priceCurrencyCode
ISO 4217
e.g. EUR, USD
Implementation
String get priceCurrencyCode {
if (googlePlayObj != null) {
return googlePlayObj!.productDetails.oneTimePurchaseOfferDetails!.priceCurrencyCode;
}
if (appStoreObj != null) {
return appStoreObj!.skProduct.priceLocale.currencyCode;
}
throw UnsupportedError("Store not supported");
}