SandboxSettings constructor

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

Implementation

const SandboxSettings({
  this.enabled = false,
  this.excludedCommands = const [],
  this.readPaths = const [],
  this.writePaths = const [],
  this.networkEnabled = true,
});