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