ServerProcess.fromJson constructor

ServerProcess.fromJson(
  1. Map<String, dynamic> json
)

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?,
  );
}