toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (averages != null) 'averages': averages!,
  if (endDate != null) 'endDate': endDate!,
  if (headers != null) 'headers': headers!,
  if (rows != null) 'rows': rows!,
  if (startDate != null) 'startDate': startDate!,
  if (totalMatchedRows != null) 'totalMatchedRows': totalMatchedRows!,
  if (totals != null) 'totals': totals!,
  if (warnings != null) 'warnings': warnings!,
};