GoogleCloudContactcenterinsightsV1ListDashboardsResponse.fromJson constructor

GoogleCloudContactcenterinsightsV1ListDashboardsResponse.fromJson(
  1. Map json_
)

Implementation

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