fieldValueInBraces method

Parser<String> fieldValueInBraces()

Implementation

Parser<String> fieldValueInBraces() => seq3(
  char('{'),
  ref0(fieldStringWithinBraces),
  char('}'),
).flatten(message: "braced string expected");