minutesSpeeding property

double get minutesSpeeding

Returns the total number of minutes the driver was speeding.

Part of session statistics.

Returns

The total number of minutes spent speeding.

Throws

  • An exception if it fails.

Implementation

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

  return resultString['result'];
}