SolveResult constructor

SolveResult(
  1. Package _root,
  2. Set<String> _overriddenPackages,
  3. LockFile _previousLockFile,
  4. List<PackageId> packages,
  5. Map<String, Pubspec> pubspecs,
  6. Map<String, List<Version>> availableVersions,
  7. int attemptedSolutions,
  8. Duration resolutionTime,
)

Implementation

SolveResult(
  this._root,
  this._overriddenPackages,
  this._previousLockFile,
  this.packages,
  this.pubspecs,
  this.availableVersions,
  this.attemptedSolutions,
  this.resolutionTime,
);