whitespace function
Returns a parser that accepts any whitespace character.
For example, the parser whitespace() accepts the character ' '.
Implementation
@useResult
Parser<String> whitespace({String message = 'whitespace expected'}) =>
CharacterParser(const WhitespaceCharPredicate(), message);