minutesSpeeding property

double get minutesSpeeding

Total minutes the driver exceeded applicable speed thresholds.

Returns

  • Minutes spent speeding as a double.

Implementation

double get minutesSpeeding {
  final OperationResult resultString = objectMethod(
    pointerId,
    'DriverBehaviourAnalysis',
    'getMinutesSpeeding',
  );

  return resultString['result'];
}