LibraryDependency constructor

LibraryDependency(
  1. {bool? isImport,
  2. bool? isDeferred,
  3. String? prefix,
  4. LibraryRef? target,
  5. List<String>? shows,
  6. List<String>? hides}
)

Implementation

LibraryDependency({
  this.isImport,
  this.isDeferred,
  this.prefix,
  this.target,
  this.shows,
  this.hides,
});