toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final crowdingCount = this.crowdingCount;
final dataFormat = this.dataFormat;
final neighborCount = this.neighborCount;
final restrictions = this.restrictions;
final returnEmbeddings = this.returnEmbeddings;
return {
'crowdingCount': ?crowdingCount,
'dataFormat': ?dataFormat,
'neighborCount': ?neighborCount,
'restrictions': ?restrictions,
'returnEmbeddings': ?returnEmbeddings,
};
}