getMinAcceleration method

MovementValue getMinAcceleration()

Implementation

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