collectionInfo method

Future<CollectionResponse> collectionInfo(
  1. String name
)

Implementation

Future<CollectionResponse> collectionInfo(String name) async {
  final answer = await _httpGet(['_db', db, '_api', 'collection', name]);
  final response = _toCollectionResponse(answer);
  return response;
}