removeWhitespace static method

String removeWhitespace(
  1. String string
)

Removes all whitespace

Implementation

static String removeWhitespace(String string) => string.replaceAll(' ', '');