withCapturesIgnored property

TrackedRegExpRecipe withCapturesIgnored
latefinal

A special "uncaptured" version of this recipe that ignores all captures within it

Implementation

late final withCapturesIgnored = TrackedRegExpRecipe(
  this,
  (expr) => expr,
  tracker: _tracker.markAllIgnored(),
  tag: RegExpTag.uncapture,
);