aggregateScore property

double get aggregateScore

Aggregate driving safety score combining the partial scores.

Returns

  • A double in [0, 100], or -1 if unavailable.

Implementation

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

  return resultString['result'];
}