copy method

  1. @override
JoinedRegExpRecipe copy({
  1. List<RegExpRecipe>? sources,
  2. String? joinBy,
  3. RegExpTag? tag,
})
override

Implementation

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