PythonRepository.fromJson constructor

PythonRepository.fromJson(
  1. Map json_
)

Implementation

PythonRepository.fromJson(core.Map json_)
  : this(
      customRepository:
          json_.containsKey('customRepository')
              ? GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigPythonRepositoryCustomRepository.fromJson(
                json_['customRepository']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
      publicRepository: json_['publicRepository'] as core.String?,
    );