GoogleCloudIdentitytoolkitAdminV2ListInboundSamlConfigsResponse.fromJson constructor

GoogleCloudIdentitytoolkitAdminV2ListInboundSamlConfigsResponse.fromJson(
  1. Map json_
)

Implementation

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