GoogleCloudDialogflowV2SummarizationSectionList.fromJson constructor

GoogleCloudDialogflowV2SummarizationSectionList.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowV2SummarizationSectionList.fromJson(core.Map json_)
    : this(
        summarizationSections: json_.containsKey('summarizationSections')
            ? (json_['summarizationSections'] as core.List)
                .map((value) =>
                    GoogleCloudDialogflowV2SummarizationSection.fromJson(
                        value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );