summary method

String summary()

Implementation

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