status property

StudyStatus status

The status of this StudyRuntime.

Implementation

StudyStatus get status => _status;
void status=(StudyStatus newStatus)

Set the state of this study runtime.

Implementation

set status(StudyStatus newStatus) {
  _status = newStatus;
  _statusEventsController.add(newStatus);
}