GoogleCloudIdentitytoolkitAdminV2ListDefaultSupportedIdpsResponse.fromJson constructor

GoogleCloudIdentitytoolkitAdminV2ListDefaultSupportedIdpsResponse.fromJson(
  1. 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,
      );