copy method
InvertibleRegExpRecipe
copy({
- RegExpRecipe? source,
- Augmenter? augment,
- bool? inverted,
- RegExpTag? tag,
override
Implementation
@override
InvertibleRegExpRecipe copy({
RegExpRecipe? source,
Augmenter? augment,
bool? inverted,
RegExpTag? tag,
}) => InvertibleRegExpRecipe(
source ?? this.source,
augment ?? this.augment,
inverted: inverted ?? this.inverted,
tag: tag ?? this.tag,
);