Verify<I, O> constructor

const Verify<I, O>(
  1. Parser<I, O> p,
  2. Predicate<O> f,
  3. ParseError h(
    1. int start,
    2. int end,
    3. O value
    ), {
  4. String? name,
})

Implementation

const Verify(this.p, this.f, this.h, {String? name}) : super(name);