removeWhitespace property
String
get
removeWhitespace
Removes all whitespace characters from a string. Example: your name => yourname
Implementation
String get removeWhitespace {
return replaceAll(' ', '');
}