ScanRunner constructor

ScanRunner({
  1. required String targetPath,
  2. List<String>? dartFiles,
  3. String? tier,
  4. ScanMessageSink? messageSink,
  5. bool applyExclusionsToFileList = true,
})

Implementation

ScanRunner({
  required this.targetPath,
  this.dartFiles,
  this.tier,
  this.messageSink,
  this.applyExclusionsToFileList = true,
});