StepBuildRecipe constructor

const StepBuildRecipe({
  1. required List<NativeBuildStep> steps,
  2. Map<String, List<String>> needsById = const {},
  3. BuildCache? cache,
})

Implementation

const StepBuildRecipe({
  required this.steps,
  this.needsById = const {},
  this.cache,
});