JoinedRegExpRecipe constructor

JoinedRegExpRecipe(
  1. List<RegExpRecipe> sources,
  2. String joinBy, {
  3. RegExpTag tag = RegExpTag.none,
})

Implementation

JoinedRegExpRecipe(List<RegExpRecipe> sources, this.joinBy, {super.tag}) :
  super(
    sources,
    GroupTracker.combine(
      sources.map((source) => source._tracker),
    ),
  );