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.
Implementation
double get swervingScore {
  final OperationResult resultString = objectMethod(
    pointerId,
    'DrivingScores',
    'getSwervingScore',
  );
  return resultString['result'];
}