removeWhiteSpaces property
String?
get
removeWhiteSpaces
Removes all whitespace characters (spaces) from the string.
Implementation
String? get removeWhiteSpaces => this?.replaceAll(' ', '');
Removes all whitespace characters (spaces) from the string.
String? get removeWhiteSpaces => this?.replaceAll(' ', '');