getRepaintBoundaryKey static method

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

Implementation

static GlobalKey? getRepaintBoundaryKey(BuildContext context) {
  final state =
      context.findAncestorStateOfType<PlotlineScrollDetectorState>();
  return state?.repaintBoundaryKey;
}