SandboxConfig constructor

const SandboxConfig({
  1. bool enabled = false,
  2. List<String> readAllowPaths = const [],
  3. List<String> writeAllowPaths = const [],
  4. bool networkEnabled = true,
  5. List<String> excludedCommands = const [],
})

Implementation

const SandboxConfig({
  this.enabled = false,
  this.readAllowPaths = const [],
  this.writeAllowPaths = const [],
  this.networkEnabled = true,
  this.excludedCommands = const [],
});