fastParse method
Parses the input and returns true
if successful, false
otherwise.
Implementation
@override
bool fastParse(State<StringReader> state) {
if (state.pos >= state.input.length) {
return true;
}
state.fail<Object?>(const ErrorExpectedEndOfInput());
return false;
}