activeTargetWidget static method

GlobalKey<State<StatefulWidget>>? activeTargetWidget(
  1. BuildContext context
)

Implementation

static GlobalKey? activeTargetWidget(BuildContext context) {
  return context
      .dependOnInheritedWidgetOfExactType<_InheritedShowCaseView>()
      ?.activeWidgetIds;
}