MemoryFile constructor

const MemoryFile({
  1. required String path,
  2. required String type,
  3. required int tokens,
})

Implementation

const MemoryFile({
  required this.path,
  required this.type,
  required this.tokens,
});