toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final bytesRead = this.bytesRead;
  final fetchWaitTimeMillis = this.fetchWaitTimeMillis;
  final localBlocksFetched = this.localBlocksFetched;
  final localBytesRead = this.localBytesRead;
  final recordsRead = this.recordsRead;
  final remoteBlocksFetched = this.remoteBlocksFetched;
  final remoteBytesRead = this.remoteBytesRead;
  final remoteBytesReadToDisk = this.remoteBytesReadToDisk;
  final remoteReqsDuration = this.remoteReqsDuration;
  final stageShufflePushReadMetrics = this.stageShufflePushReadMetrics;
  return {
    'bytesRead': ?bytesRead,
    'fetchWaitTimeMillis': ?fetchWaitTimeMillis,
    'localBlocksFetched': ?localBlocksFetched,
    'localBytesRead': ?localBytesRead,
    'recordsRead': ?recordsRead,
    'remoteBlocksFetched': ?remoteBlocksFetched,
    'remoteBytesRead': ?remoteBytesRead,
    'remoteBytesReadToDisk': ?remoteBytesReadToDisk,
    'remoteReqsDuration': ?remoteReqsDuration,
    'stageShufflePushReadMetrics': ?stageShufflePushReadMetrics,
  };
}