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