toJson method

Map<String, dynamic> toJson()

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,
  };
}