GoogleCloudDocumentaiV1beta1DocumentPageTableTableRow.fromJson constructor
GoogleCloudDocumentaiV1beta1DocumentPageTableTableRow.fromJson(
- Map _json
Implementation
GoogleCloudDocumentaiV1beta1DocumentPageTableTableRow.fromJson(core.Map _json)
: this(
cells: _json.containsKey('cells')
? (_json['cells'] as core.List)
.map<GoogleCloudDocumentaiV1beta1DocumentPageTableTableCell>(
(value) =>
GoogleCloudDocumentaiV1beta1DocumentPageTableTableCell
.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);