toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (addTime != null) 'addTime': addTime!,
  if (hostPort != null) 'hostPort': hostPort!,
  if (isActive != null) 'isActive': isActive!,
  if (processId != null) 'processId': processId!,
  if (processLogs != null) 'processLogs': processLogs!,
  if (removeTime != null) 'removeTime': removeTime!,
  if (totalCores != null) 'totalCores': totalCores!,
};