hasBicycleSupport property

bool get hasBicycleSupport

Whether bicycles are supported on this segment.

Returns

  • bool: true when bicycle support is available.

Implementation

bool get hasBicycleSupport {
  final OperationResult resultString = objectMethod(
    pointerId,
    'PTRouteSegment',
    'getHasBicycleSupport',
  );

  return resultString['result'];
}