toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (aggregates != null) 'aggregates': aggregates!,
      if (dimensionHeaders != null) 'dimensionHeaders': dimensionHeaders!,
      if (kind != null) 'kind': kind!,
      if (metadata != null) 'metadata': metadata!,
      if (metricHeaders != null) 'metricHeaders': metricHeaders!,
      if (pivotHeaders != null) 'pivotHeaders': pivotHeaders!,
      if (propertyQuota != null) 'propertyQuota': propertyQuota!,
      if (rows != null) 'rows': rows!,
    };