ListGitLabConfigsResponse.fromJson constructor

ListGitLabConfigsResponse.fromJson(
  1. Map json_
)

Implementation

ListGitLabConfigsResponse.fromJson(core.Map json_)
    : this(
        gitlabConfigs: json_.containsKey('gitlabConfigs')
            ? (json_['gitlabConfigs'] as core.List)
                .map((value) => GitLabConfig.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        nextPageToken: json_.containsKey('nextPageToken')
            ? json_['nextPageToken'] as core.String
            : null,
      );