DependencyInfo constructor

const DependencyInfo({
  1. required String name,
  2. String? versionConstraint,
  3. String? resolvedVersion,
  4. required String source,
  5. String? repositoryUrl,
  6. bool isDev = false,
  7. bool isTransitive = false,
})

Implementation

const DependencyInfo({
  required this.name,
  this.versionConstraint,
  this.resolvedVersion,
  required this.source,
  this.repositoryUrl,
  this.isDev = false,
  this.isTransitive = false,
});