INTEGER top-level property

Parser<IntegerParser> INTEGER
final

Implementation

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