GoogleCloudContactcenterinsightsV1View.fromJson constructor

GoogleCloudContactcenterinsightsV1View.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContactcenterinsightsV1View.fromJson(core.Map json_)
    : this(
        createTime: json_.containsKey('createTime')
            ? json_['createTime'] as core.String
            : null,
        displayName: json_.containsKey('displayName')
            ? json_['displayName'] as core.String
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
        updateTime: json_.containsKey('updateTime')
            ? json_['updateTime'] as core.String
            : null,
        value:
            json_.containsKey('value') ? json_['value'] as core.String : null,
      );