GoogleCloudDialogflowV2IntentFollowupIntentInfo.fromJson constructor

GoogleCloudDialogflowV2IntentFollowupIntentInfo.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowV2IntentFollowupIntentInfo.fromJson(core.Map json_)
    : this(
        followupIntentName: json_.containsKey('followupIntentName')
            ? json_['followupIntentName'] as core.String
            : null,
        parentFollowupIntentName:
            json_.containsKey('parentFollowupIntentName')
                ? json_['parentFollowupIntentName'] as core.String
                : null,
      );