decrypt method

Implementation

Future<List<DecryptedPatient>> decrypt(List<EncryptedPatient> patients) async {
	return await CardinalSdkPlatformInterface.instance.apis.patient.decrypt(
		_sdkId,
		patients,
	);
}