GoogleCloudDataplexV1ListContentResponse.fromJson constructor

GoogleCloudDataplexV1ListContentResponse.fromJson(
  1. Map json_
)

Implementation

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