MemoryEntry constructor

const MemoryEntry({
  1. required String path,
  2. required String content,
  3. required int mtimeMs,
  4. String? header,
  5. int? limit,
})

Implementation

const MemoryEntry({
  required this.path,
  required this.content,
  required this.mtimeMs,
  this.header,
  this.limit,
});