RunningProcess constructor

RunningProcess({
  1. Map<String, String>? attributes,
  2. String? cmdline,
  3. String? exePath,
  4. String? pid,
  5. String? user,
})

Implementation

RunningProcess({
  this.attributes,
  this.cmdline,
  this.exePath,
  this.pid,
  this.user,
});