PhaseArtifact.fromJson constructor
      
      PhaseArtifact.fromJson(
    
    
- 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,
      );