toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final fetchWaitTimeMillis = this.fetchWaitTimeMillis;
  final localBlocksFetched = this.localBlocksFetched;
  final readBytes = this.readBytes;
  final readRecords = this.readRecords;
  final remoteBlocksFetched = this.remoteBlocksFetched;
  final remoteBytesRead = this.remoteBytesRead;
  final remoteBytesReadToDisk = this.remoteBytesReadToDisk;
  final remoteReqsDuration = this.remoteReqsDuration;
  final shufflePushReadMetrics = this.shufflePushReadMetrics;
  final totalBlocksFetched = this.totalBlocksFetched;
  return {
    'fetchWaitTimeMillis': ?fetchWaitTimeMillis,
    'localBlocksFetched': ?localBlocksFetched,
    'readBytes': ?readBytes,
    'readRecords': ?readRecords,
    'remoteBlocksFetched': ?remoteBlocksFetched,
    'remoteBytesRead': ?remoteBytesRead,
    'remoteBytesReadToDisk': ?remoteBytesReadToDisk,
    'remoteReqsDuration': ?remoteReqsDuration,
    'shufflePushReadMetrics': ?shufflePushReadMetrics,
    'totalBlocksFetched': ?totalBlocksFetched,
  };
}