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