toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final embedding = this.embedding;
  final entityId = this.entityId;
  final neighborCount = this.neighborCount;
  final numericFilters = this.numericFilters;
  final parameters = this.parameters;
  final perCrowdingAttributeNeighborCount =
      this.perCrowdingAttributeNeighborCount;
  final stringFilters = this.stringFilters;
  return {
    'embedding': ?embedding,
    'entityId': ?entityId,
    'neighborCount': ?neighborCount,
    'numericFilters': ?numericFilters,
    'parameters': ?parameters,
    'perCrowdingAttributeNeighborCount': ?perCrowdingAttributeNeighborCount,
    'stringFilters': ?stringFilters,
  };
}