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