GoogleCloudDialogflowCxV3HandlerEventHandler.fromJson constructor

GoogleCloudDialogflowCxV3HandlerEventHandler.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowCxV3HandlerEventHandler.fromJson(core.Map json_)
  : this(
      condition: json_['condition'] as core.String?,
      event: json_['event'] as core.String?,
      fulfillment: json_.containsKey('fulfillment')
          ? GoogleCloudDialogflowCxV3Fulfillment.fromJson(
              json_['fulfillment'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );