removeAllWhiteSpace method
Removes all whitespaces from string
Implementation
String removeAllWhiteSpace() =>
!isEmptyOrNull ? this!.replaceAll(RegExp(r'\s+\b|\b\s'), '') : '';
Removes all whitespaces from string
String removeAllWhiteSpace() =>
!isEmptyOrNull ? this!.replaceAll(RegExp(r'\s+\b|\b\s'), '') : '';