toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final queryPlan = this.queryPlan;
final queryStats = this.queryStats;
final rowCountExact = this.rowCountExact;
final rowCountLowerBound = this.rowCountLowerBound;
return {
'queryPlan': ?queryPlan,
'queryStats': ?queryStats,
'rowCountExact': ?rowCountExact,
'rowCountLowerBound': ?rowCountLowerBound,
};
}