hasFerryConnections property

bool get hasFerryConnections
inherited

Check if the route contains ferry connections.

Returns

  • Boolean indicating whether the route includes ferry connections.

Throws

  • An exception if it fails.

Implementation

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

  return resultString['result'];
}