removeWhitespace property
String
get
removeWhitespace
Removes all whitespace characters.
Implementation
String get removeWhitespace {
if (this == null) return '';
return this!.replaceAll(RegExp(r'\s+'), '');
}