GoogleCloudDialogflowCxV3ListChangelogsResponse.fromJson constructor

GoogleCloudDialogflowCxV3ListChangelogsResponse.fromJson(
  1. Map json_
)

Implementation

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