GoogleCloudDialogflowV2IntentMessageTableCardRow.fromJson constructor

GoogleCloudDialogflowV2IntentMessageTableCardRow.fromJson(
  1. Map json_
)

Implementation

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