GoogleCloudContactcenterinsightsV1ListAllFeedbackLabelsResponse.fromJson constructor

GoogleCloudContactcenterinsightsV1ListAllFeedbackLabelsResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContactcenterinsightsV1ListAllFeedbackLabelsResponse.fromJson(
  core.Map json_,
) : this(
      feedbackLabels: (json_['feedbackLabels'] as core.List?)
          ?.map(
            (value) =>
                GoogleCloudContactcenterinsightsV1FeedbackLabel.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
          )
          .toList(),
      nextPageToken: json_['nextPageToken'] as core.String?,
    );