Tuple3<I, O1, O2, O3> constructor

const Tuple3<I, O1, O2, O3>(
  1. Parser<I, O1> p1,
  2. Parser<I, O2> p2,
  3. Parser<I, O3> p3, {
  4. String? name,
})

Implementation

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