hasWheelchairSupport property

bool get hasWheelchairSupport

Get if public transit route instruction has wheelchair support

Returns

  • True if has wheelchair support, false otherwise

Throws

  • An exception if it fails.

Implementation

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

  return resultString['result'];
}