Preceded<I, O1, O2> constructor

const Preceded<I, O1, O2>(
  1. Parser<I, O1> start,
  2. Parser<I, O2> p, {
  3. String? name,
})

Implementation

const Preceded(this.start, this.p, {String? name}) : super(name);