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