GoogleCloudContactcenterinsightsV1ListQaScorecardsResponse.fromJson constructor

GoogleCloudContactcenterinsightsV1ListQaScorecardsResponse.fromJson(
  1. Map json_
)

Implementation

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