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