stop method

Future<void> stop()

Stop all studies in this client manager.

Implementation

Future<void> stop() async {
  for (var study in studies) {
    await getStudyRuntime(study)?.stop();
  }
  _state = ClientManagerState.stopped;
}