prettyPrint method

String prettyPrint()

Implementation

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