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