formatCurrentPrice method

String formatCurrentPrice(
  1. double value
)

Implementation

String formatCurrentPrice(double value) {
  return priceFormatter?.call(value) ?? value.toString();
}