PythonRepository.fromJson constructor

PythonRepository.fromJson(
  1. Map json_
)

Implementation

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