GoogleCloudDialogflowCxV3ListFlowsResponse.fromJson constructor
GoogleCloudDialogflowCxV3ListFlowsResponse.fromJson(
- Map json_
Implementation
GoogleCloudDialogflowCxV3ListFlowsResponse.fromJson(core.Map json_)
: this(
flows: json_.containsKey('flows')
? (json_['flows'] as core.List)
.map((value) => GoogleCloudDialogflowCxV3Flow.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
);