isInstalled<T extends NeuronController> static method

bool isInstalled<T extends NeuronController>()

Returns true if a controller of type T is already registered.

Implementation

static bool isInstalled<T extends NeuronController>() {
  return _registry.containsKey(T);
}