priceAmountMicros property
int
get
priceAmountMicros
Returns the price for the payment cycle in micro-units, where 1,000,000 micro-units equal one unit of the currency.
Implementation
int get priceAmountMicros {
if (googlePlayObj != null) {
return googlePlayObj!.priceAmountMicros;
}
if (appStoreObj != null) {
return (double.parse(appStoreObj!.price) * 1000000).toInt();
}
throw UnsupportedError("Store not supported");
}