WorkspacePackage constructor

const WorkspacePackage({
  1. required String id,
  2. required String path,
  3. required List<String> roots,
})

Implementation

const WorkspacePackage({
  required this.id,
  required this.path,
  required this.roots,
});