getAllDbs method

Future getAllDbs()

Get all the databases from CouchDB

Implementation

Future<dynamic> getAllDbs() {
  const url = alldbs;

  return _httpRequest(getAllDbss, url);
}