removeAllWhiteSpaces method

String removeAllWhiteSpaces()

Remove all White Spaces

Implementation

String removeAllWhiteSpaces() => replaceAll(RegExp(r'\s+'), '');