toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (dimensionHeaders != null) 'dimensionHeaders': dimensionHeaders!,
      if (kind != null) 'kind': kind!,
      if (maximums != null) 'maximums': maximums!,
      if (metricHeaders != null) 'metricHeaders': metricHeaders!,
      if (minimums != null) 'minimums': minimums!,
      if (propertyQuota != null) 'propertyQuota': propertyQuota!,
      if (rowCount != null) 'rowCount': rowCount!,
      if (rows != null) 'rows': rows!,
      if (totals != null) 'totals': totals!,
    };