GoogleCloudContactcenterinsightsV1Widget.fromJson constructor

GoogleCloudContactcenterinsightsV1Widget.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContactcenterinsightsV1Widget.fromJson(core.Map json_)
  : this(
      chart: json_.containsKey('chart')
          ? GoogleCloudContactcenterinsightsV1Chart.fromJson(
              json_['chart'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      chartReference: json_['chartReference'] as core.String?,
      container: json_.containsKey('container')
          ? GoogleCloudContactcenterinsightsV1Container.fromJson(
              json_['container'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      filter: json_['filter'] as core.String?,
    );