convertToVerificationResult method
Implementation
EvaluationResult? convertToVerificationResult(String data) {
try {
final cleanedData = data.replaceAll('```json', '').replaceAll('```', '');
final map = jsonDecode(cleanedData);
return EvaluationResult.fromJson(map);
} catch (e) {
return null;
}
}