ProcessSummary constructor

ProcessSummary({
  1. String? addTime,
  2. String? hostPort,
  3. bool? isActive,
  4. String? processId,
  5. Map<String, String>? processLogs,
  6. String? removeTime,
  7. int? totalCores,
})

Implementation

ProcessSummary({
  this.addTime,
  this.hostPort,
  this.isActive,
  this.processId,
  this.processLogs,
  this.removeTime,
  this.totalCores,
});