SourceFile constructor

SourceFile({
  1. required String path,
  2. required String contentHash,
  3. required List<String> imports,
  4. List<String> exports = const [],
  5. bool isTest = false,
  6. bool isGenerated = false,
})

Implementation

SourceFile({
  required this.path,
  required this.contentHash,
  required this.imports,
  this.exports = const [],
  this.isTest = false,
  this.isGenerated = false,
});