ListGithubEnterpriseConfigsResponse.fromJson constructor
ListGithubEnterpriseConfigsResponse.fromJson(
- 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(),
);