GoogleCloudDialogflowV2IntentMessageListSelect.fromJson constructor
GoogleCloudDialogflowV2IntentMessageListSelect.fromJson(
- Map json_
Implementation
GoogleCloudDialogflowV2IntentMessageListSelect.fromJson(core.Map json_)
: this(
items: (json_['items'] as core.List?)
?.map((value) =>
GoogleCloudDialogflowV2IntentMessageListSelectItem.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
subtitle: json_['subtitle'] as core.String?,
title: json_['title'] as core.String?,
);