GoogleCloudIdentitytoolkitAdminV2ListOAuthIdpConfigsResponse.fromJson constructor
GoogleCloudIdentitytoolkitAdminV2ListOAuthIdpConfigsResponse.fromJson(
- Map json_
Implementation
GoogleCloudIdentitytoolkitAdminV2ListOAuthIdpConfigsResponse.fromJson(
core.Map json_)
: this(
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
oauthIdpConfigs: json_.containsKey('oauthIdpConfigs')
? (json_['oauthIdpConfigs'] as core.List)
.map((value) =>
GoogleCloudIdentitytoolkitAdminV2OAuthIdpConfig.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);