toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final dataStoreSpecs = this.dataStoreSpecs;
  final datastore = this.datastore;
  final engine = this.engine;
  final filter = this.filter;
  final maxResults = this.maxResults;
  return {
    'dataStoreSpecs': ?dataStoreSpecs,
    'datastore': ?datastore,
    'engine': ?engine,
    'filter': ?filter,
    'maxResults': ?maxResults,
  };
}