getPatients method

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

Implementation

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