removeExtraSpaces static method

String removeExtraSpaces(
  1. String input
)

Implementation

static String removeExtraSpaces(String input) =>
    input.replaceAll(_extraSpacesRegex, ' ');