Choice3<I, O> constructor

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

Implementation

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