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