collectionProperties method

Future<CollectionPropertiesResponse> collectionProperties(
  1. String name
)

Implementation

Future<CollectionPropertiesResponse> collectionProperties(String name) async {
  var answer =
      await _httpGet(['_db', db, '_api', 'collection', name, 'properties']);
  final response = _toCollectionPropertiesResult(answer);
  return response;
}