GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableBlock.fromJson constructor
GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableBlock.fromJson(
- Map json_
Implementation
GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableBlock.fromJson(
core.Map json_)
: this(
bodyRows: (json_['bodyRows'] as core.List?)
?.map((value) =>
GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableRow
.fromJson(value as core.Map<core.String, core.dynamic>))
.toList(),
caption: json_['caption'] as core.String?,
headerRows: (json_['headerRows'] as core.List?)
?.map((value) =>
GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableRow
.fromJson(value as core.Map<core.String, core.dynamic>))
.toList(),
);