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