toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final approximateNeighborCount = this.approximateNeighborCount;
final datapoint = this.datapoint;
final fractionLeafNodesToSearchOverride =
this.fractionLeafNodesToSearchOverride;
final neighborCount = this.neighborCount;
final perCrowdingAttributeNeighborCount =
this.perCrowdingAttributeNeighborCount;
final rrf = this.rrf;
return {
'approximateNeighborCount': ?approximateNeighborCount,
'datapoint': ?datapoint,
'fractionLeafNodesToSearchOverride': ?fractionLeafNodesToSearchOverride,
'neighborCount': ?neighborCount,
'perCrowdingAttributeNeighborCount': ?perCrowdingAttributeNeighborCount,
'rrf': ?rrf,
};
}