associated static method

List<RenderBox>? associated(
  1. BuildContext context
)

Implementation

static List<RenderBox>? associated(BuildContext context) {
  return (context
          .getElementForInheritedWidgetOfExactType<
              ExpandScopeInheritedWidget>()
          ?.widget as ExpandScopeInheritedWidget?)
      ?.associated;
}