toJson method

Map<String, dynamic> toJson()

Implementation

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