GoogleCloudContentwarehouseV1ListDocumentSchemasResponse.fromJson constructor
GoogleCloudContentwarehouseV1ListDocumentSchemasResponse.fromJson(
- Map json_
Implementation
GoogleCloudContentwarehouseV1ListDocumentSchemasResponse.fromJson(
core.Map json_)
: this(
documentSchemas: (json_['documentSchemas'] as core.List?)
?.map((value) =>
GoogleCloudContentwarehouseV1DocumentSchema.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
nextPageToken: json_['nextPageToken'] as core.String?,
);