GoogleCloudDialogflowV2IntentMessageListSelectItem.fromJson constructor
GoogleCloudDialogflowV2IntentMessageListSelectItem.fromJson(
- Map json_
Implementation
GoogleCloudDialogflowV2IntentMessageListSelectItem.fromJson(core.Map json_)
: this(
description: json_['description'] as core.String?,
image:
json_.containsKey('image')
? GoogleCloudDialogflowV2IntentMessageImage.fromJson(
json_['image'] as core.Map<core.String, core.dynamic>,
)
: null,
info:
json_.containsKey('info')
? GoogleCloudDialogflowV2IntentMessageSelectItemInfo.fromJson(
json_['info'] as core.Map<core.String, core.dynamic>,
)
: null,
title: json_['title'] as core.String?,
);