GoogleCloudDocumentaiV1DocumentPageTableTableRow.fromJson constructor

GoogleCloudDocumentaiV1DocumentPageTableTableRow.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDocumentaiV1DocumentPageTableTableRow.fromJson(core.Map json_)
  : this(
      cells:
          (json_['cells'] as core.List?)
              ?.map(
                (value) =>
                    GoogleCloudDocumentaiV1DocumentPageTableTableCell.fromJson(
                      value as core.Map<core.String, core.dynamic>,
                    ),
              )
              .toList(),
    );