GoogleCloudContactcenterinsightsV1ListChartsResponse.fromJson constructor
GoogleCloudContactcenterinsightsV1ListChartsResponse.fromJson(
- Map json_
Implementation
GoogleCloudContactcenterinsightsV1ListChartsResponse.fromJson(core.Map json_)
: this(
charts: (json_['charts'] as core.List?)
?.map(
(value) => GoogleCloudContactcenterinsightsV1Chart.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
nextPageToken: json_['nextPageToken'] as core.String?,
);