INTEGER top-level property
Implementation
final Parser<IntegerParser> INTEGER = pattern('0-9')
.plus()
.flatten()
.map((value) => IntegerParser(int.parse(value)));
final Parser<IntegerParser> INTEGER = pattern('0-9')
.plus()
.flatten()
.map((value) => IntegerParser(int.parse(value)));