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