GoogleCloudDialogflowV2AgentAssistantFeedbackKnowledgeSearchFeedback.fromJson constructor

GoogleCloudDialogflowV2AgentAssistantFeedbackKnowledgeSearchFeedback.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowV2AgentAssistantFeedbackKnowledgeSearchFeedback.fromJson(
    core.Map json_)
    : this(
        answerCopied: json_.containsKey('answerCopied')
            ? json_['answerCopied'] as core.bool
            : null,
        clickedUris: json_.containsKey('clickedUris')
            ? (json_['clickedUris'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );