GoogleCloudDialogflowV2IntentMessageLinkOutSuggestion.fromJson constructor

GoogleCloudDialogflowV2IntentMessageLinkOutSuggestion.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowV2IntentMessageLinkOutSuggestion.fromJson(core.Map json_)
    : this(
        destinationName: json_.containsKey('destinationName')
            ? json_['destinationName'] as core.String
            : null,
        uri: json_.containsKey('uri') ? json_['uri'] as core.String : null,
      );