toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final estimatedBytes = this.estimatedBytes;
final estimatedRows = this.estimatedRows;
final oldestEntryTime = this.oldestEntryTime;
return {
'estimatedBytes': ?estimatedBytes,
'estimatedRows': ?estimatedRows,
'oldestEntryTime': ?oldestEntryTime,
};
}