hasBicycleSupport property

bool get hasBicycleSupport

Get if the route segment has bicycle support

Returns

  • True if the route segment has bicycle support, false otherwise.

Throws

  • An exception if it fails.

Implementation

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

  return resultString['result'];
}