SandboxSettings constructor

const SandboxSettings({
  1. bool enabled = false,
  2. bool failIfUnavailable = false,
  3. bool autoAllowBashIfSandboxed = false,
  4. SandboxNetworkConfig? network,
  5. SandboxFilesystemConfig? filesystem,
  6. List<String> ignoredViolations = const [],
})

Implementation

const SandboxSettings({
  this.enabled = false,
  this.failIfUnavailable = false,
  this.autoAllowBashIfSandboxed = false,
  this.network,
  this.filesystem,
  this.ignoredViolations = const [],
});