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