fieldValueInQuotes method
Implementation
Parser<String> fieldValueInQuotes() => seq3(
char('"'),
ref0(fieldStringWithinQuotes),
char('"'),
).flatten(message: "quoted string expected");
Parser<String> fieldValueInQuotes() => seq3(
char('"'),
ref0(fieldStringWithinQuotes),
char('"'),
).flatten(message: "quoted string expected");