fieldValueInQuotes method

Parser<String> fieldValueInQuotes()

Implementation

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