GoogleCloudDialogflowV2IntentMessageTableCardRow.fromJson constructor
GoogleCloudDialogflowV2IntentMessageTableCardRow.fromJson(
- Map json_
Implementation
GoogleCloudDialogflowV2IntentMessageTableCardRow.fromJson(core.Map json_)
: this(
cells:
(json_['cells'] as core.List?)
?.map(
(value) =>
GoogleCloudDialogflowV2IntentMessageTableCardCell.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
dividerAfter: json_['dividerAfter'] as core.bool?,
);