DartLibraryDependency constructor

DartLibraryDependency({
  1. required String path,
  2. required ElementLocation location,
  3. required LibraryDependencyKind kind,
  4. DartElementRef<DartLibrary>? parentRef,
})

Implementation

DartLibraryDependency({
  required String path,
  required ElementLocation location,
  required this.kind,
  this.parentRef,
}) : super(name: path, location: location);