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