swervingScore property

double get swervingScore

Get the actual swerving risk score.

A score is between 0 and 100, with 0 = unsafe, 50 = neutral, 100 = safe.

A score of -1 means invalid (not available)

Returns

The swerving risk score.

Throws

  • An exception if it fails.

Implementation

double get swervingScore {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'DrivingScores',
    'getSwervingScore',
  );

  return resultString['result'];
}