startAnalysis method

bool startAnalysis()

Start a new driver behaviour analysis session.

Returns

  • True if the analysis was started successfully, false otherwise.

Also see:

Implementation

bool startAnalysis() {
  final OperationResult resultString = objectMethod(
    pointerId,
    'DriverBehaviour',
    'startAnalysis',
  );

  return resultString['result'];
}