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