fatigueScore property

double get fatigueScore

Risk score indicating potential driver fatigue.

Returns

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

Implementation

double get fatigueScore {
  final OperationResult resultString = objectMethod(
    pointerId,
    'DrivingScores',
    'getFatigueScore',
  );

  return resultString['result'];
}