DartBomResult constructor

const DartBomResult({
  1. required List<DependencyMismatch> mismatches,
  2. required List<DependencyMismatch> matches,
  3. required List<DependencyMismatch> skipped,
  4. required PubSpec sourcePubspec,
  5. required PubSpec targetPubspec,
  6. required String sourceFile,
  7. required String targetFile,
})

Implementation

const DartBomResult({
  required this.mismatches,
  required this.matches,
  required this.skipped,
  required this.sourcePubspec,
  required this.targetPubspec,
  required this.sourceFile,
  required this.targetFile,
});