getPatients method

Future<List<GroupScoped<EncryptedPatient>>> getPatients(
  1. String groupId,
  2. List<String> patientIds
)

Implementation

Future<List<GroupScoped<EncryptedPatient>>> getPatients(String groupId, List<String> patientIds) async {
	return await CardinalSdkPlatformInterface.instance.apis.patientBasic.inGroup.getPatients(
		_sdkId,
		groupId,
		patientIds,
	);
}