GoogleCloudContactcenterinsightsV1IssueAssignment.fromJson constructor

GoogleCloudContactcenterinsightsV1IssueAssignment.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContactcenterinsightsV1IssueAssignment.fromJson(core.Map json_)
    : this(
        displayName: json_.containsKey('displayName')
            ? json_['displayName'] as core.String
            : null,
        issue:
            json_.containsKey('issue') ? json_['issue'] as core.String : null,
        score: json_.containsKey('score')
            ? (json_['score'] as core.num).toDouble()
            : null,
      );