hasWheelchairSupport property

bool get hasWheelchairSupport

Whether this segment supports wheelchair accessibility.

Returns

  • bool: true when wheelchair support is available.

Implementation

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

  return resultString['result'];
}