getPatient method

Future<GroupScoped<EncryptedPatient>?> getPatient(
  1. String groupId,
  2. String entityId
)

Implementation

Future<GroupScoped<EncryptedPatient>?> getPatient(String groupId, String entityId) async {
	return await CardinalSdkPlatformInterface.instance.apis.patientBasic.inGroup.getPatient(
		_sdkId,
		groupId,
		entityId,
	);
}