of static method

Implementation

static AnimatedSliverMultiBoxAdaptorElement? of(BuildContext context) {
  try {
    return context
        .findAncestorRenderObjectOfType<AnimatedRenderSliverMultiBoxAdaptor>()
        ?.childManager;
  } catch (e) {
    return null;
  }
}