toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final direction = this.direction;
final filters = this.filters;
final limits = this.limits;
final locations = this.locations;
final rootCriteria = this.rootCriteria;
return {
'direction': ?direction,
'filters': ?filters,
'limits': ?limits,
'locations': ?locations,
'rootCriteria': ?rootCriteria,
};
}