LinuxParameters constructor

LinuxParameters({
  1. List<Device>? devices,
  2. bool? initProcessEnabled,
  3. int? maxSwap,
  4. int? sharedMemorySize,
  5. int? swappiness,
  6. List<Tmpfs>? tmpfs,
})

Implementation

LinuxParameters({
  this.devices,
  this.initProcessEnabled,
  this.maxSwap,
  this.sharedMemorySize,
  this.swappiness,
  this.tmpfs,
});