FilePathExtractor constructor

const FilePathExtractor({
  1. IStackTraceFetcher? stackTraceFetcher,
})

Constructs a FilePathExtractor with an optional custom IStackTraceFetcher. If no custom fetcher is provided, a default StackTraceFetcher is used.

Implementation

const FilePathExtractor({
  IStackTraceFetcher? stackTraceFetcher,
}) : _stackTraceFetcher = stackTraceFetcher ?? const StackTraceFetcher();