GoogleCloudRecaptchaenterpriseV1ProtectedEndpointGroup.fromJson constructor
GoogleCloudRecaptchaenterpriseV1ProtectedEndpointGroup.fromJson(
- Map json_
Implementation
GoogleCloudRecaptchaenterpriseV1ProtectedEndpointGroup.fromJson(
core.Map json_,
) : this(
protectedEndpoints: (json_['protectedEndpoints'] as core.List?)
?.map(
(value) =>
GoogleCloudRecaptchaenterpriseV1ProtectedEndpoint.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
);