status property

StudyStatus get status

The status of this StudyRuntime.

Implementation

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

Set the state of this study runtime.

Implementation

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