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