hasWheelchairSupport property

bool get hasWheelchairSupport

Get wheelchair support

Returns

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

Throws

  • An exception if it fails.

Implementation

bool get hasWheelchairSupport {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'PTRouteSegment',
    'getHasWheelchairSupport',
  );

  return resultString['result'];
}