toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final dataIntermediateTable = this.dataIntermediateTable;
final freshnessIntermediateTable = this.freshnessIntermediateTable;
final resultTable = this.resultTable;
final volumeIntermediateTable = this.volumeIntermediateTable;
return {
'dataIntermediateTable': ?dataIntermediateTable,
'freshnessIntermediateTable': ?freshnessIntermediateTable,
'resultTable': ?resultTable,
'volumeIntermediateTable': ?volumeIntermediateTable,
};
}