getInstantaneousScores method
Get the instantaneous scores (related to the ongoing analysis).
Returns
The instantaneous scores.
Throws
- An exception if it fails.
Implementation
DrivingScores getInstantaneousScores() {
final OperationResult resultString = objectMethod(
_pointerId,
'DriverBehaviour',
'getInstantaneousScores',
);
return DrivingScores.init(resultString['result']);
}