PN_LOCAL method
Parser
PN_LOCAL()
override
Implementation
Parser PN_LOCAL() => super.PN_LOCAL().map((values) {
final first = values[0];
final remainingList = values[1] as List;
final remaining = flattenList(remainingList).join();
return '$first$remaining';
});