StalenessInputs constructor

const StalenessInputs({
  1. required String recordedManifestHash,
  2. required Map<String, String> recordedNormalizedHashes,
  3. required String recordedBlueprintHash,
  4. required String recordedRecipeVersion,
  5. required String recordedEngineVersion,
  6. required Map<String, String> recordedRelevantPubspecHashes,
  7. required String currentManifestHash,
  8. required Map<String, String?> currentNormalizedHashes,
  9. required String currentBlueprintHash,
  10. required String currentRecipeVersion,
  11. required String currentEngineVersion,
  12. required Map<String, String?> currentRelevantPubspecHashes,
  13. List<String> unrelatedChangedPaths = const [],
})

Implementation

const StalenessInputs({
  required this.recordedManifestHash,
  required this.recordedNormalizedHashes,
  required this.recordedBlueprintHash,
  required this.recordedRecipeVersion,
  required this.recordedEngineVersion,
  required this.recordedRelevantPubspecHashes,
  required this.currentManifestHash,
  required this.currentNormalizedHashes,
  required this.currentBlueprintHash,
  required this.currentRecipeVersion,
  required this.currentEngineVersion,
  required this.currentRelevantPubspecHashes,
  this.unrelatedChangedPaths = const [],
});