toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (hybridStats != null) 'hybridStats': hybridStats!,
  if (infoTypeStats != null) 'infoTypeStats': infoTypeStats!,
  if (numRowsProcessed != null) 'numRowsProcessed': numRowsProcessed!,
  if (processedBytes != null) 'processedBytes': processedBytes!,
  if (totalEstimatedBytes != null)
    'totalEstimatedBytes': totalEstimatedBytes!,
};