BuildPlan constructor

BuildPlan({
  1. required List<String> nodesToRebuild,
  2. required List<String> nodesFromCache,
  3. required Map<String, String> invalidationReasons,
  4. required String planHash,
})

Creates a new BuildPlan with the specified rebuild and cache nodes.

Implementation

BuildPlan({
  required this.nodesToRebuild,
  required this.nodesFromCache,
  required this.invalidationReasons,
  required this.planHash,
});