getStats method

Future<IndexStats> getStats()

Get stats of the index.

Implementation

Future<IndexStats> getStats() async {
  final response =
      await http.getMethod<Map<String, Object?>>('/indexes/$uid/stats');

  return IndexStats.fromMap(response.data!);
}