collectionStatistics method

Future<CollectionPropertiesResponse> collectionStatistics(
  1. String collectionName
)

Implementation

Future<CollectionPropertiesResponse> collectionStatistics(
    String collectionName) async {
  final answer = await _httpGet(
      ['_db', db, '_api', 'collection', collectionName, 'figures']);
  final response = _toCollectionPropertiesResult(answer);
  return response;
}