GoogleCloudIdentitytoolkitAdminV2ListDefaultSupportedIdpsResponse.fromJson constructor

GoogleCloudIdentitytoolkitAdminV2ListDefaultSupportedIdpsResponse.fromJson(
  1. Map json_
)

Implementation

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