startAnalysis method
Start a new driver behaviour analysis session.
Returns
- True if the analysis was started successfully, false otherwise.
Also see:
- DriverBehaviour.stopAnalysis - To stop the analysis and retrieve results.
- DriverBehaviour.getOngoingAnalysis - To get the current ongoing analysis.
Implementation
bool startAnalysis() {
final OperationResult resultString = objectMethod(
pointerId,
'DriverBehaviour',
'startAnalysis',
);
return resultString['result'];
}