getMinAcceleration method
Implementation
MovementValue getMinAcceleration() {
if(_vectorList.isEmpty){
throw Exception("No List to get data from: Recording not started");
}
return MovementTypeUtils.filterLowestValueFromList(_vectorList);
}