MemoryFileInfo constructor

const MemoryFileInfo({
  1. required String path,
  2. required MemoryType type,
  3. required String content,
  4. String? parent,
  5. List<String>? globs,
  6. bool contentDiffersFromDisk = false,
  7. String? rawContent,
})

Implementation

const MemoryFileInfo({
  required this.path,
  required this.type,
  required this.content,
  this.parent,
  this.globs,
  this.contentDiffersFromDisk = false,
  this.rawContent,
});