formatPrice method

String formatPrice(
  1. double value
)

Implementation

String formatPrice(double value) {
  return priceFormatter?.call(value) ?? value.toStringAsFixed(2);
}