GoogleCloudDialogflowV2SuggestFaqAnswersResponse.fromJson constructor
GoogleCloudDialogflowV2SuggestFaqAnswersResponse.fromJson(
- Map json_
Implementation
GoogleCloudDialogflowV2SuggestFaqAnswersResponse.fromJson(core.Map json_)
: this(
contextSize: json_['contextSize'] as core.int?,
faqAnswers:
(json_['faqAnswers'] as core.List?)
?.map(
(value) => GoogleCloudDialogflowV2FaqAnswer.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
latestMessage: json_['latestMessage'] as core.String?,
);