Orchestrator.fromJson constructor
Orchestrator.fromJson(
- Map json_
Implementation
Orchestrator.fromJson(core.Map json_)
: this(
slurm: json_.containsKey('slurm')
? SlurmOrchestrator.fromJson(
json_['slurm'] as core.Map<core.String, core.dynamic>,
)
: null,
);