Orchestrator.fromJson constructor

Orchestrator.fromJson(
  1. 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,
    );