SeparatedListMN<I, O1, O2> constructor

const SeparatedListMN<I, O1, O2>(
  1. int m,
  2. int n,
  3. Parser<I, O1> p,
  4. Parser<I, O2> sep, {
  5. String? name,
})

Implementation

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