VolumeStatistics constructor

const VolumeStatistics({
  1. required double current,
  2. required double average,
  3. required double peak,
  4. required double minimum,
  5. required int historySize,
  6. required double smoothingFactor,
})

Implementation

const VolumeStatistics({
  required this.current,
  required this.average,
  required this.peak,
  required this.minimum,
  required this.historySize,
  required this.smoothingFactor,
});