departureDelayInSeconds property

int get departureDelayInSeconds

Get departure delay in seconds

Returns

  • Departure delay in seconds of the route segment.

Throws

  • An exception if it fails.

Implementation

int get departureDelayInSeconds {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'PTRouteSegment',
    'getDepartureDelayInSeconds',
  );

  return resultString['result'];
}