getLocalizedPrice method

String? getLocalizedPrice()

Implementation

String? getLocalizedPrice() {
  if(localizedPrice != null && localizedPrice!.isNotEmpty) {
    return localizedPrice;
  } else {
    return '\$ ' + (iap?.price ?? "");
  }
}