GoogleCloudDialogflowV2GenerateSuggestionsRequest.fromJson constructor

GoogleCloudDialogflowV2GenerateSuggestionsRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowV2GenerateSuggestionsRequest.fromJson(core.Map json_)
  : this(
      latestMessage: json_['latestMessage'] as core.String?,
      triggerEvents: (json_['triggerEvents'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
    );