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,
);