PackageIdentity constructor

const PackageIdentity({
  1. required String id,
  2. required String path,
  3. List<String> roots = const [],
})

Implementation

const PackageIdentity({
  required this.id,
  required this.path,
  this.roots = const [],
});