SeparatedList<I, O> constructor

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

Implementation

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