toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final addTime = this.addTime;
  final hostPort = this.hostPort;
  final isActive = this.isActive;
  final processId = this.processId;
  final processLogs = this.processLogs;
  final removeTime = this.removeTime;
  final totalCores = this.totalCores;
  return {
    'addTime': ?addTime,
    'hostPort': ?hostPort,
    'isActive': ?isActive,
    'processId': ?processId,
    'processLogs': ?processLogs,
    'removeTime': ?removeTime,
    'totalCores': ?totalCores,
  };
}