eventType property
Get the detected event type.
Returns
The detected event type. See DrivingEvent.
Throws
- An exception if it fails.
Implementation
DrivingEvent get eventType {
final OperationResult resultString = objectMethod(
_pointerId,
'MappedDrivingEvent',
'getEventType',
);
return DrivingEventExtension.fromId(resultString['result']);
}