endOfInput function Null safety
- [String message = 'end of input expected']
Returns a parser that succeeds at the end of input.
Implementation
Parser<void> endOfInput([String message = 'end of input expected']) =>
EndOfInputParser(message);
Returns a parser that succeeds at the end of input.
Parser<void> endOfInput([String message = 'end of input expected']) =>
EndOfInputParser(message);