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