Removes all whitespace and collapses internal whitespace into single spaces.
static String squish(String value) => value.trim().replaceAll(RegExp(r'\s+'), ' ');