listCollections static method

Future<List<Map<String, dynamic>>> listCollections()

Implementation

static Future<List<Map<String, dynamic>>> listCollections() async {
  var ret = await _getOrSetData<Map<String, dynamic>>("!/collections/listCollections")();
  return ret;
}