toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final debugStats = this.debugStats;
final executionDuration = this.executionDuration;
final readOperations = this.readOperations;
final resultsReturned = this.resultsReturned;
return {
'debugStats': ?debugStats,
'executionDuration': ?executionDuration,
'readOperations': ?readOperations,
'resultsReturned': ?resultsReturned,
};
}