getStudyDeploymentStatusList method

  1. @override
Future<List<StudyDeploymentStatus?>> getStudyDeploymentStatusList(
  1. List<String> studyDeploymentIds
)
override

Get the statuses for a set of deployments with the specified studyDeploymentIds. Returns null for IDs in studyDeploymentIds for which no deployment exists.

Implementation

@override
Future<List<StudyDeploymentStatus?>> getStudyDeploymentStatusList(
  List<String> studyDeploymentIds,
) async => studyDeploymentIds.map((id) => _repository[id]?.status).toList();