IndexStats.fromJson constructor
Implementation
factory IndexStats.fromJson(Map<String, dynamic> json) {
return IndexStats(
vectorsCount: decodeInt64(json['vectorsCount']) ?? 0,
sparseVectorsCount: decodeInt64(json['sparseVectorsCount']) ?? 0,
shardsCount: json['shardsCount'] ?? 0,
);
}