getRepeater method

RepeaterParser<E> getRepeater(
  1. int min,
  2. int max, {
  3. String? source,
})

Implementation

RepeaterParser<E> getRepeater(int min, int max, {String? source}) {
  return GeneralRepeaterParser(min, max, this, source: source);
}