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