Replaces all whitespace characters with replace.
replace
String withNormalizedWhitespace([String replace = ' ']) { return replaceAll(RegExp(r'[\s]+'), replace); }