toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allRemovalsTimeMs = this.allRemovalsTimeMs;
final allUpdatesTimeMs = this.allUpdatesTimeMs;
final commitTimeMs = this.commitTimeMs;
final customMetrics = this.customMetrics;
final memoryUsedBytes = this.memoryUsedBytes;
final numRowsDroppedByWatermark = this.numRowsDroppedByWatermark;
final numRowsRemoved = this.numRowsRemoved;
final numRowsTotal = this.numRowsTotal;
final numRowsUpdated = this.numRowsUpdated;
final numShufflePartitions = this.numShufflePartitions;
final numStateStoreInstances = this.numStateStoreInstances;
final operatorName = this.operatorName;
return {
'allRemovalsTimeMs': ?allRemovalsTimeMs,
'allUpdatesTimeMs': ?allUpdatesTimeMs,
'commitTimeMs': ?commitTimeMs,
'customMetrics': ?customMetrics,
'memoryUsedBytes': ?memoryUsedBytes,
'numRowsDroppedByWatermark': ?numRowsDroppedByWatermark,
'numRowsRemoved': ?numRowsRemoved,
'numRowsTotal': ?numRowsTotal,
'numRowsUpdated': ?numRowsUpdated,
'numShufflePartitions': ?numShufflePartitions,
'numStateStoreInstances': ?numStateStoreInstances,
'operatorName': ?operatorName,
};
}