PhaseArtifact.fromJson constructor

PhaseArtifact.fromJson(
  1. Map json_
)

Implementation

PhaseArtifact.fromJson(core.Map json_)
    : this(
        jobManifestsPath: json_.containsKey('jobManifestsPath')
            ? json_['jobManifestsPath'] as core.String
            : null,
        manifestPath: json_.containsKey('manifestPath')
            ? json_['manifestPath'] as core.String
            : null,
        skaffoldConfigPath: json_.containsKey('skaffoldConfigPath')
            ? json_['skaffoldConfigPath'] as core.String
            : null,
      );