ServerProcess.fromJson constructor
Implementation
factory ServerProcess.fromJson(Map<String, dynamic> json) {
return ServerProcess(
concurrentExecutions: json['ConcurrentExecutions'] as int,
launchPath: json['LaunchPath'] as String,
parameters: json['Parameters'] as String?,
);
}