hasOppositeSibling property

bool get hasOppositeSibling

Whether a corresponding event exists in the opposite direction.

Returns

  • bool: true when a sibling event exists in the opposite direction, otherwise false.

Implementation

bool get hasOppositeSibling {
  final OperationResult resultString = objectMethod(
    pointerId,
    'TrafficEvent',
    'hasOppositeSibling',
  );

  return resultString['result'];
}