NeuronDebugEvent.controller constructor
Implementation
factory NeuronDebugEvent.controller(String id, bool disposed) {
return NeuronDebugEvent(
kind: disposed
? NeuronDebugEventKind.controllerDispose
: NeuronDebugEventKind.controllerInit,
id: id,
value: null,
timestamp: DateTime.now().millisecondsSinceEpoch,
);
}