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