hasWheelchairSupport property

bool get hasWheelchairSupport

Whether wheelchair access is available for this instruction/stop.

Returns

  • bool: true when wheelchair support is provided.

Implementation

bool get hasWheelchairSupport {
  final OperationResult resultString = objectMethod(
    pointerId,
    'PTRouteInstruction',
    'getHasWheelchairSupport',
  );

  return resultString['result'];
}