removeStudy method

  1. @mustCallSuper
Future<void> removeStudy(
  1. Study study
)

Remove study from this client manager.

Note that by removing a study, it isn't stopped. Hence, the study can later be added again using the addStudy method. If a study is to be permanently stopped, use the stopStudy method.

Implementation

@mustCallSuper
Future<void> removeStudy(Study study) async {
  var runtime = repository[study];
  repository.remove(study);
  if (runtime != null) runtime.remove();
}