GoogleCloudIdentitytoolkitAdminV2ListDefaultSupportedIdpConfigsResponse.fromJson constructor

GoogleCloudIdentitytoolkitAdminV2ListDefaultSupportedIdpConfigsResponse.fromJson(
  1. Map json_
)

Implementation

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