BuildArtifact.fromJson constructor
BuildArtifact.fromJson(
- Map json_
Implementation
BuildArtifact.fromJson(core.Map json_)
: this(
image:
json_.containsKey('image') ? json_['image'] as core.String : null,
tag: json_.containsKey('tag') ? json_['tag'] as core.String : null,
);