getUIComponentByChild method

UIComponent? getUIComponentByChild(
  1. UIElement? child, {
  2. bool includePurgedEntries = false,
})

Implementation

UIComponent? getUIComponentByChild(
  UIElement? child, {
  bool includePurgedEntries = false,
}) {
  return _uiComponentsTree?.getParentValue(
    child,
    includePurgedEntries: includePurgedEntries,
  );
}