From a72df0b855ee43ed82c4035d987a6880660b5f22 Mon Sep 17 00:00:00 2001 From: mr Date: Mon, 19 Jan 2026 10:53:47 +0100 Subject: [PATCH] debug malformed --- lib/core/services/api_service.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/core/services/api_service.dart b/lib/core/services/api_service.dart index d72beb6..e68470d 100644 --- a/lib/core/services/api_service.dart +++ b/lib/core/services/api_service.dart @@ -58,6 +58,7 @@ class APIService { String url, String method, dynamic body, Options? options) async { switch (method.toLowerCase()) { case 'get': + print(url); return await _dio.get(url, options: options); case 'post': return await _dio.post(url, data: body, options: options);