getStudyDeploymentStatusList method
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();