start method
void
start()
Start all studies in this client manager.
Implementation
void start() {
for (var studyDeploymentId in repository.keys) {
getStudyRuntime(studyDeploymentId)?.start();
}
_state = ClientManagerState.started;
}