ContainerImage.fromJson constructor

ContainerImage.fromJson(
  1. Map json_
)

Implementation

ContainerImage.fromJson(core.Map json_)
    : this(
        repository: json_.containsKey('repository')
            ? json_['repository'] as core.String
            : null,
        tag: json_.containsKey('tag') ? json_['tag'] as core.String : null,
      );