allCollections method

Implementation

Future<ResultResponse<List<CollectionInfo>>> allCollections() async {
  final answer = await _httpGet(['_db', db, '_api', 'collection']);
  final result = _toResultResponse(answer, _toCollectionListResponse);
  return result;
}