ContainerInfo.fromJson constructor

ContainerInfo.fromJson(
  1. Map json_
)

Implementation

ContainerInfo.fromJson(core.Map json_)
    : this(
        image:
            json_.containsKey('image') ? json_['image'] as core.String : null,
      );