formattedPriceWithLocale method

String formattedPriceWithLocale(
  1. String? locale
)

Implementation

String formattedPriceWithLocale(String? locale) => productVariants.isEmpty
    ? ''
    : productVariants.first.price.formattedPriceWithLocale(locale);