SeparatedList<I, O1, O2> constructor

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

Implementation

const SeparatedList(this.p, this.sep, {String? name}) : super(name);