ContainerImage.fromJson constructor

ContainerImage.fromJson(
  1. Map json_
)

Implementation

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