removeAllSpace property

String removeAllSpace

Remove all whitespace inside string Example: your name => yourname

Implementation

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