arrivalDelayInSeconds property

int get arrivalDelayInSeconds

Get arrival delay in seconds

Returns

  • Arrival delay in seconds of the route segment.

Throws

  • An exception if it fails.

Implementation

int get arrivalDelayInSeconds {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'PTRouteSegment',
    'getArrivalDelayInSeconds',
  );

  return resultString['result'];
}