DataOwnerApiFactory.fromExistingApis constructor
DataOwnerApiFactory.fromExistingApis(
- HealthcarePartyApi healthcarePartyApi,
- PatientApi patientApi,
- DeviceApi deviceApi
Implementation
DataOwnerApiFactory.fromExistingApis(HealthcarePartyApi healthcarePartyApi, PatientApi patientApi, DeviceApi deviceApi) {
this.healthcarePartyApi = Future.value(healthcarePartyApi);
this.patientApi = Future.value(patientApi);
this.deviceApi = Future.value(deviceApi);
}