/// Based on Android's FOCUSABLE_FLAGS. See [flutter/engine/AccessibilityBridge.java](https://github.com/flutter/engine/blob/main/shell/platform/android/io/flutter/view/AccessibilityBridge.java).
staticfinalint_importantFlagsForAccessibility=
SemanticsFlag.hasCheckedState.index|
SemanticsFlag.hasToggledState.index|
SemanticsFlag.hasEnabledState.index|
SemanticsFlag.isButton.index|
SemanticsFlag.isTextField.index|
SemanticsFlag.isFocusable.index|
SemanticsFlag.isSlider.index|
SemanticsFlag.isInMutuallyExclusiveGroup.index;
finalWidgetsBinding_binding;
/// Attempts to find the [SemanticsNode] of first result from `finder`.
///
/// If the object identified by the finder doesn't own its semantic node,
/// this will return the semantics data of the first ancestor with semantics.
/// The ancestor's semantic data will include the child's as well as
/// other nodes that have been merged together.
///
/// If the [SemanticsNode] of the object identified by the finder is
/// force-merged into an ancestor (e.g. via the [MergeSemantics] widget)
/// the node into which it is merged is returned. That node will include
/// all the semantics information of the nodes merged into it.
///
/// Will throw a [StateError] if the finder returns more than one element or