toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final chosen = this.chosen;
final estimatedBytesSaved = this.estimatedBytesSaved;
final rejectedReason = this.rejectedReason;
final tableReference = this.tableReference;
return {
'chosen': ?chosen,
'estimatedBytesSaved': ?estimatedBytesSaved,
'rejectedReason': ?rejectedReason,
'tableReference': ?tableReference,
};
}