aggregateScore property

double get aggregateScore

Get the aggregate 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 aggregate risk score.

Throws

  • An exception if it fails.

Implementation

double get aggregateScore {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'DrivingScores',
    'getAggregateScore',
  );

  return resultString['result'];
}