harshBrakingScore property

double get harshBrakingScore

Risk score for harsh braking events.

Returns

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

Implementation

double get harshBrakingScore {
  final OperationResult resultString = objectMethod(
    pointerId,
    'DrivingScores',
    'getHarshBrakingScore',
  );

  return resultString['result'];
}