GoogleCloudContactcenterinsightsV1ListIssueModelsResponse.fromJson constructor

GoogleCloudContactcenterinsightsV1ListIssueModelsResponse.fromJson(
  1. Map json_
)

Implementation

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