Remove all whitespace from string
text - The text to process Returns text without whitespace
text
static String removeWhitespace(String text) { return text.replaceAll(RegExp(r'\s+'), ''); }