replaceWhiteSpaces static method

String? replaceWhiteSpaces(
  1. String? value
)

Removes all white spaces

@param value @return

Implementation

static String? replaceWhiteSpaces(String? value) {
  if (value != null) {
			return value.replaceAll(' ', '');
		}

		return null;
}