minimumVolume property
double
get
minimumVolume
Gets the minimum volume from the current history.
Implementation
double get minimumVolume {
if (_volumeHistory.isEmpty) return 0.0;
return _volumeHistory.reduce((a, b) => a < b ? a : b);
}