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