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