toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final hybridStats = this.hybridStats;
  final infoTypeStats = this.infoTypeStats;
  final numRowsProcessed = this.numRowsProcessed;
  final processedBytes = this.processedBytes;
  final totalEstimatedBytes = this.totalEstimatedBytes;
  return {
    'hybridStats': ?hybridStats,
    'infoTypeStats': ?infoTypeStats,
    'numRowsProcessed': ?numRowsProcessed,
    'processedBytes': ?processedBytes,
    'totalEstimatedBytes': ?totalEstimatedBytes,
  };
}