exploreIndex method
Implementation
Future<List<Map<String, dynamic>>> exploreIndex(String cube, String index,
{Map<String, dynamic>? axes}) async {
final response =
await dio.get('/cube/exploreIndex/$cube/$index', queryParameters: axes);
return response.data;
}