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