GoogleCloudDialogflowV2ListConversationProfilesResponse.fromJson constructor

GoogleCloudDialogflowV2ListConversationProfilesResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowV2ListConversationProfilesResponse.fromJson(
    core.Map json_)
    : this(
        conversationProfiles: json_.containsKey('conversationProfiles')
            ? (json_['conversationProfiles'] as core.List)
                .map((value) =>
                    GoogleCloudDialogflowV2ConversationProfile.fromJson(
                        value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        nextPageToken: json_.containsKey('nextPageToken')
            ? json_['nextPageToken'] as core.String
            : null,
      );