GoogleCloudDialogflowV2EnvironmentHistory.fromJson constructor

GoogleCloudDialogflowV2EnvironmentHistory.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowV2EnvironmentHistory.fromJson(core.Map json_)
  : this(
      entries:
          (json_['entries'] as core.List?)
              ?.map(
                (value) =>
                    GoogleCloudDialogflowV2EnvironmentHistoryEntry.fromJson(
                      value as core.Map<core.String, core.dynamic>,
                    ),
              )
              .toList(),
      nextPageToken: json_['nextPageToken'] as core.String?,
      parent: json_['parent'] as core.String?,
    );