countAlerts property

int get countAlerts

Get count of alerts in the route segment

Returns

  • Count of alerts in the route segment.

Implementation

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

  return resultString['result'];
}