fieldValueInQuotes method

Parser<String> fieldValueInQuotes()

Implementation

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