countAlerts property

int get countAlerts

Get count of alerts in the route segment.

Returns

  • int: Count of alerts in the route segment.

See also:

Implementation

int get countAlerts {
  final OperationResult resultString = objectMethod(
    pointerId,
    'PTRouteSegment',
    'getCountAlerts',
  );

  return resultString['result'];
}