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