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