isUserRoadblock property
Return true if the traffic event is a user roadblock
Returns
- True if the traffic event is a user roadblock, false otherwise.
Throws
- An exception if it fails.
Implementation
bool get isUserRoadblock {
final OperationResult resultString = objectMethod(
_pointerId,
'TrafficEvent',
'isUserRoadblock',
);
return resultString['result'];
}