GoogleCloudContactcenterinsightsV1ListIssuesResponse.fromJson constructor

GoogleCloudContactcenterinsightsV1ListIssuesResponse.fromJson(
  1. Map json_
)

Implementation

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