MemoryFileInfo constructor

const MemoryFileInfo({
  1. required String path,
  2. required String type,
  3. String content = '',
  4. bool exists = true,
  5. String? parent,
  6. bool isNested = false,
})

Implementation

const MemoryFileInfo({
  required this.path,
  required this.type,
  this.content = '',
  this.exists = true,
  this.parent,
  this.isNested = false,
});