copy method
Implementation
@override
JoinedRegExpRecipe copy({
List<RegExpRecipe>? sources,
String? joinBy,
RegExpTag? tag,
}) => JoinedRegExpRecipe(
sources ?? this.sources,
joinBy ?? this.joinBy,
tag: tag ?? this.tag,
);
@override
JoinedRegExpRecipe copy({
List<RegExpRecipe>? sources,
String? joinBy,
RegExpTag? tag,
}) => JoinedRegExpRecipe(
sources ?? this.sources,
joinBy ?? this.joinBy,
tag: tag ?? this.tag,
);