removeAllWhitespace property

String removeAllWhitespace

Remove all whitespace inside string

Example: your name => yourname

Implementation

String get removeAllWhitespace => replaceAll(' ', '');