status property
StudyStatus
get
status
The status of the study running on this StudyRuntime.
Implementation
StudyStatus get status => _study?.status ?? StudyStatus.DeploymentNotStarted;
set
status
(StudyStatus newStatus)
Implementation
set status(StudyStatus newStatus) {
_study?.status = newStatus;
_statusEventsController.add(newStatus);
}