getStudyDeploymentStatus method

  1. @override
Future<StudyDeploymentStatus> getStudyDeploymentStatus(
  1. String studyDeploymentId
)
override

Get the status for a study deployment with the given studyDeploymentId. Returns null if studyDeploymentId is not found.

Implementation

@override
Future<StudyDeploymentStatus> getStudyDeploymentStatus(
        String studyDeploymentId) async =>
    StudyDeploymentStatus.fromJson(
        await _rpc(GetStudyDeploymentStatus(studyDeploymentId)));