ProcessDetails constructor

ProcessDetails({
  1. String? launchedAt,
  2. String? name,
  3. int? parentPid,
  4. String? path,
  5. int? pid,
  6. String? terminatedAt,
})

Implementation

ProcessDetails({
  this.launchedAt,
  this.name,
  this.parentPid,
  this.path,
  this.pid,
  this.terminatedAt,
});