stopAnalysis method

DriverBehaviourAnalysis stopAnalysis()

Stop the current analysis and get its result.

Returns

The analysis result.

Throws

  • An exception if it fails.

Implementation

DriverBehaviourAnalysis stopAnalysis() {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'DriverBehaviour',
    'stopAnalysis',
  );

  return DriverBehaviourAnalysis.init(resultString['result']);
}