copy method

  1. @override
InvertibleRegExpRecipe copy({
  1. RegExpRecipe? source,
  2. Augmenter? augment,
  3. bool? inverted,
  4. 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,
);