WasmVfs constructor

WasmVfs({
  1. Random? random,
  2. required WorkerOptions workerOptions,
  3. String chroot = '/',
})

Implementation

WasmVfs({
  super.random,
  required WorkerOptions workerOptions,
  this.chroot = '/',
})  : synchronizer =
          RequestResponseSynchronizer(workerOptions.synchronizationBuffer),
      serializer = MessageSerializer(workerOptions.communicationBuffer),
      pathContext = p.Context(style: p.Style.url, current: chroot),
      super(name: 'dart-sqlite3-vfs');