getCharacterCountWithoutSpaces method

int getCharacterCountWithoutSpaces()

Implementation

int getCharacterCountWithoutSpaces() => replaceAll(RegExp(r'\s'), '').length;