GoogleCloudDialogflowV2SmartReplyAnswer.fromJson constructor

GoogleCloudDialogflowV2SmartReplyAnswer.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowV2SmartReplyAnswer.fromJson(core.Map json_)
  : this(
      answerRecord: json_['answerRecord'] as core.String?,
      confidence: (json_['confidence'] as core.num?)?.toDouble(),
      reply: json_['reply'] as core.String?,
    );