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