minutesDriven property

double get minutesDriven

Get the number of minutes driven.

Part of session statistics.

Returns

The minutes driven.

Throws

  • An exception if it fails.

Implementation

double get minutesDriven {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'DriverBehaviourAnalysis',
    'getMinutesDriven',
  );

  return resultString['result'];
}