GoogleCloudDialogflowV2SummarySuggestion.fromJson constructor

GoogleCloudDialogflowV2SummarySuggestion.fromJson(
  1. Map json_
)

Implementation

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