GoogleCloudDialogflowV2EnvironmentHistoryEntry.fromJson constructor

GoogleCloudDialogflowV2EnvironmentHistoryEntry.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowV2EnvironmentHistoryEntry.fromJson(core.Map json_)
    : this(
        agentVersion: json_.containsKey('agentVersion')
            ? json_['agentVersion'] as core.String
            : null,
        createTime: json_.containsKey('createTime')
            ? json_['createTime'] as core.String
            : null,
        description: json_.containsKey('description')
            ? json_['description'] as core.String
            : null,
      );