debug malformed

This commit is contained in:
mr
2026-01-19 10:53:47 +01:00
parent 998fa11490
commit a72df0b855

View File

@@ -58,6 +58,7 @@ class APIService<T extends SerializerDeserializer> {
String url, String method, dynamic body, Options? options) async { String url, String method, dynamic body, Options? options) async {
switch (method.toLowerCase()) { switch (method.toLowerCase()) {
case 'get': case 'get':
print(url);
return await _dio.get(url, options: options); return await _dio.get(url, options: options);
case 'post': case 'post':
return await _dio.post(url, data: body, options: options); return await _dio.post(url, data: body, options: options);