DeployArtifact.fromJson constructor

DeployArtifact.fromJson(
  1. Map json_
)

Implementation

DeployArtifact.fromJson(core.Map json_)
    : this(
        artifactUri: json_.containsKey('artifactUri')
            ? json_['artifactUri'] as core.String
            : null,
        manifestPaths: json_.containsKey('manifestPaths')
            ? (json_['manifestPaths'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );