ignoredStopSignsScore property
      
      double
      get
      ignoredStopSignsScore
      
    
    
Get the actual ignored stop signs 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 ignored stop signs risk score.
Implementation
double get ignoredStopSignsScore {
  final OperationResult resultString = objectMethod(
    pointerId,
    'DrivingScores',
    'getIgnoredStopSignsScore',
  );
  return resultString['result'];
}