prettyPrint method
Implementation
String prettyPrint() {
if (isValid) {
return "✅ No contract violations found";
}
return "🚨 API Contract Broken\n\n${errors.join('\n')}";
}
String prettyPrint() {
if (isValid) {
return "✅ No contract violations found";
}
return "🚨 API Contract Broken\n\n${errors.join('\n')}";
}