formatVolume method

String formatVolume(
  1. double value
)

Implementation

String formatVolume(double value) {
  return volumeFormatter?.call(value) ?? _formatCompactVolume(value);
}