Expected<I, O> constructor

const Expected<I, O>(
  1. Parser<I, O> p,
  2. String tag, {
  3. String? name,
})

Implementation

const Expected(this.p, this.tag, {String? name}) : super(name);