removeAllWhiteSpace method
Removes white space from given String
Implementation
String removeAllWhiteSpace() =>
this.validate().replaceAll(RegExp(r"\s+\b|\b\s"), "");
Removes white space from given String
String removeAllWhiteSpace() =>
this.validate().replaceAll(RegExp(r"\s+\b|\b\s"), "");