toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final description = this.description;
final endOffset = this.endOffset;
final inputRowsPerSecond = this.inputRowsPerSecond;
final latestOffset = this.latestOffset;
final metrics = this.metrics;
final numInputRows = this.numInputRows;
final processedRowsPerSecond = this.processedRowsPerSecond;
final startOffset = this.startOffset;
return {
'description': ?description,
'endOffset': ?endOffset,
'inputRowsPerSecond': ?inputRowsPerSecond,
'latestOffset': ?latestOffset,
'metrics': ?metrics,
'numInputRows': ?numInputRows,
'processedRowsPerSecond': ?processedRowsPerSecond,
'startOffset': ?startOffset,
};
}