drivingScores property

DrivingScores get drivingScores

Get scores for this session (partial and aggregate)

Returns

The scores for this session (partial and aggregate).

Throws

  • An exception if it fails.

Implementation

DrivingScores get drivingScores {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'DriverBehaviourAnalysis',
    'getDrivingScores',
  );

  return DrivingScores.init(resultString['result']);
}