IOVFS constructor

IOVFS(
  1. Directory rootDirectory, {
  2. bool showExtensions = true,
  3. String workingDirectory = "/",
  4. List<VFSComparator> comparators = const [VFSComparatorName()],
  5. List<VFSLayout> layouts = const [VFSLayoutList(), VFSLayoutGrid()],
})

Implementation

IOVFS(
  this.rootDirectory, {
  this.showExtensions = true,
  super.workingDirectory,
  super.comparators,
  super.layouts,
}) : assert(!kIsWeb, "RealVFS is not supported on the web");