status property
      
      StudyStatus
      get
      status
      
    
inherited
    The status of this StudyRuntime.
Implementation
StudyStatus get status => _status;
      
      set
      status
      (StudyStatus newStatus) 
      
    
inherited
    Set the state of this study runtime.
Implementation
set status(StudyStatus newStatus) {
  _status = newStatus;
  _statusEventsController.add(newStatus);
}