storeVirtualFile static method

void storeVirtualFile(
  1. String path,
  2. Uint8List bytes
)

Stores bytes under path so they can be used as input to encryptFile or decryptFile.

Implementation

static void storeVirtualFile(String path, Uint8List bytes) {
  _virtualFileSystem[path] = bytes;
}