FileSystemRoot constructor

FileSystemRoot(
  1. String rootPath, {
  2. String? notFoundCallback()?,
})

Implementation

FileSystemRoot(
  this.rootPath, {
  this.notFoundCallback,
}) {
  if (!Directory(rootPath).existsSync()) {
    throw LiquifyEngineMissingRootPath(rootPath);
  }
}