toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final criteria = this.criteria;
final filterSpecs = this.filterSpecs;
final filterViewId = this.filterViewId;
final namedRangeId = this.namedRangeId;
final range = this.range;
final sortSpecs = this.sortSpecs;
final tableId = this.tableId;
final title = this.title;
return {
'criteria': ?criteria,
'filterSpecs': ?filterSpecs,
'filterViewId': ?filterViewId,
'namedRangeId': ?namedRangeId,
'range': ?range,
'sortSpecs': ?sortSpecs,
'tableId': ?tableId,
'title': ?title,
};
}