Collapse runs of whitespace and trim, so cosmetic formatting changes don't alter fingerprints.
String normalizeText(String? str) => (str ?? '').replaceAll(RegExp(r'\s+'), ' ').trim();