summary method
Implementation
String summary() {
if (removed.isEmpty) return 'Nothing to prune — no orphaned strings.';
return removed.map((r) => ' removed [${r[0]}] ${r[1]}').join('\n');
}
String summary() {
if (removed.isEmpty) return 'Nothing to prune — no orphaned strings.';
return removed.map((r) => ' removed [${r[0]}] ${r[1]}').join('\n');
}