GoogleCloudContentwarehouseV1ListLinkedTargetsResponse.fromJson constructor

GoogleCloudContentwarehouseV1ListLinkedTargetsResponse.fromJson(
  1. Map json_
)

Implementation

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