SlangPackageInfo constructor

SlangPackageInfo({
  1. required String name,
  2. required String path,
  3. required String importPath,
  4. bool isMainPackage = false,
})

Implementation

SlangPackageInfo({
  required this.name,
  required this.path,
  required this.importPath,
  this.isMainPackage = false,
});