CreateRepositoryRequest.fromJson constructor

CreateRepositoryRequest.fromJson(
  1. Map json_
)

Implementation

CreateRepositoryRequest.fromJson(core.Map json_)
    : this(
        parent: json_.containsKey('parent')
            ? json_['parent'] as core.String
            : null,
        repository: json_.containsKey('repository')
            ? Repository.fromJson(
                json_['repository'] as core.Map<core.String, core.dynamic>)
            : null,
        repositoryId: json_.containsKey('repositoryId')
            ? json_['repositoryId'] as core.String
            : null,
      );