ValueP<I, O1, O2> constructor

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

Implementation

const ValueP(this.value, this.p, {String? name}) : super(name);