maybeControllerOf static method
Implementation
static OverlayController? maybeControllerOf(BuildContext context) {
final scope = context.dependOnInheritedWidgetOfExactType<
InheritedInteractiveScope<InteractiveOverlayImage>>();
return scope?.controller as OverlayController?;
}