getFileSystemWeb function

FileSystem getFileSystemWeb({
  1. FileSystemIdbOptions? options,
})

Web file system with options (if options is null, a default options with pageSize default being 16Kb).

Implementation

FileSystem getFileSystemWeb({FileSystemIdbOptions? options}) {
  return getFileSystemWebImpl(options: options);
}