removeAllWhitespace method
Implementation
String removeAllWhitespace() {
if (this == null) {
return '';
}
return this!.replaceAll(RegExp(r'\s+'), '');
}
String removeAllWhitespace() {
if (this == null) {
return '';
}
return this!.replaceAll(RegExp(r'\s+'), '');
}