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