DockerRepositoryConfig.fromJson constructor

DockerRepositoryConfig.fromJson(
  1. Map json_
)

Implementation

DockerRepositoryConfig.fromJson(core.Map json_)
    : this(
        immutableTags: json_.containsKey('immutableTags')
            ? json_['immutableTags'] as core.bool
            : null,
      );