ListGithubEnterpriseConfigsResponse.fromJson constructor

ListGithubEnterpriseConfigsResponse.fromJson(
  1. Map json_
)

Implementation

ListGithubEnterpriseConfigsResponse.fromJson(core.Map json_)
  : this(
      configs: (json_['configs'] as core.List?)
          ?.map(
            (value) => GitHubEnterpriseConfig.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
    );