GoogleCloudDialogflowCxV3EnvironmentWebhookConfig.fromJson constructor

GoogleCloudDialogflowCxV3EnvironmentWebhookConfig.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowCxV3EnvironmentWebhookConfig.fromJson(core.Map json_)
  : this(
      webhookOverrides: (json_['webhookOverrides'] as core.List?)
          ?.map(
            (value) => GoogleCloudDialogflowCxV3Webhook.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
    );