toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final approximateNeighborCandidates = this.approximateNeighborCandidates;
final leafNodesSearchFraction = this.leafNodesSearchFraction;
return {
'approximateNeighborCandidates': ?approximateNeighborCandidates,
'leafNodesSearchFraction': ?leafNodesSearchFraction,
};
}