toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final integerFacetingOptions = this.integerFacetingOptions;
  final numFacetBuckets = this.numFacetBuckets;
  final objectType = this.objectType;
  final operatorName = this.operatorName;
  final sourceName = this.sourceName;
  return {
    'integerFacetingOptions': ?integerFacetingOptions,
    'numFacetBuckets': ?numFacetBuckets,
    'objectType': ?objectType,
    'operatorName': ?operatorName,
    'sourceName': ?sourceName,
  };
}