hasFerryConnections property

bool get hasFerryConnections

Check if the route contains ferry connections.

Returns

  • Boolean indicating whether the route includes ferry connections.

Implementation

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

  return resultString['result'];
}