Sequence4<I, O> constructor

const Sequence4<I, O>(
  1. Parser<I, O> p1,
  2. Parser<I, O> p2,
  3. Parser<I, O> p3,
  4. Parser<I, O> p4, {
  5. String? name,
})

Implementation

const Sequence4(this.p1, this.p2, this.p3, this.p4, {String? name})
    : super(name);