GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableCell.fromJson constructor

GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableCell.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableCell.fromJson(
    core.Map json_)
    : this(
        blocks: (json_['blocks'] as core.List?)
            ?.map((value) =>
                GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlock
                    .fromJson(value as core.Map<core.String, core.dynamic>))
            .toList(),
        colSpan: json_['colSpan'] as core.int?,
        rowSpan: json_['rowSpan'] as core.int?,
      );