hasFerryConnections property

bool get hasFerryConnections

Whether the route includes ferry connections.

Returns

  • bool: true when one or more ferry connections are part of the route.

Implementation

bool get hasFerryConnections {
  final OperationResult resultString = objectMethod(
    pointerId,
    'RouteBase',
    'hasFerryConnections',
  );

  return resultString['result'];
}