plainFieldChar method
Implementation
Parser<String> plainFieldChar() => [
seq2(char(escapeChar), any()).map2((_, char) => char),
pattern("^$delimiter$newline"),
].toChoiceParser();
Parser<String> plainFieldChar() => [
seq2(char(escapeChar), any()).map2((_, char) => char),
pattern("^$delimiter$newline"),
].toChoiceParser();