/tripkit/TripKitAndroidUI/com.skedgo.tripkit.ui.utils/isWheelchairModeSelected
isWheelchairModeSelected
\ fun SharedPreferences.isWheelchairModeSelected(): Boolean
Walking and wheelchair are two faces of a single user choice: the wheelchair mode is selected exactly when walking is not. Only TransportMode.ID_WALK is ever written to PREF_KEY_TRANSPORT_MODE (see PrefsBasedTransportViewFilter.setSelected), so every reader must derive the wheelchair state from it instead of keeping a second flag.
This is the single source of truth for "is the user routing by wheelchair?". It is deliberately notcom.skedgo.tripkit.TripPreferences.isWheelchairPreferred, which is the separate "wheelchair information" option and only asks for transit accessibility information.
\ fun Context.isWheelchairModeSelected(): Boolean
Convenience overload of SharedPreferences.isWheelchairModeSelected for callers that only hold a Context.