formattedPrice property

String formattedPrice

Returns formatted price for the payment cycle, including its currency sign.

Implementation

String get formattedPrice {
  if (googlePlayObj != null) {
    return googlePlayObj!.price;
  }
  if (appStoreObj != null) {
    return appStoreObj!.price;
  }
  throw UnsupportedError("Store not supported");
}