controllerFor static method
Return the active controller without changing its lifetime.
Implementation
static EntityGraphDevtoolsController? controllerFor(EntityGraph graph) {
final controller = _slots[graph]?.entry?.controller;
return controller == null || controller.isDisposed ? null : controller;
}