hasOppositeSibling property
Checks if event has a sibling on opposite direction
Returns
- True if the event has a sibling on opposite direction, false otherwise.
Throws
- An exception if it fails.
Implementation
bool get hasOppositeSibling {
final OperationResult resultString = objectMethod(
_pointerId,
'TrafficEvent',
'hasOppositeSibling',
);
return resultString['result'];
}