getPriceProductValueString static method
Implementation
static String getPriceProductValueString(
{required double? price,
double? salePrice,
bool? onSale,
int decimals = 0}) {
return '${formatPrice(getPriceProductValue(price: price, salePrice: salePrice, onSale: onSale))} €';
}