This commit is contained in:
2025-10-30 12:23:56 +05:30
parent 58e53d0aeb
commit 32e8b85cee
7 changed files with 277 additions and 176 deletions

View File

@@ -10,7 +10,7 @@ class UserService {
Future<List<User>> getUserDetails() async {
try {
final response = await _dio.get('/api/customer/details');
final response = await _dio.get('/api/customer');
if (response.statusCode == 200) {
log('Response: ${response.data}');
return (response.data as List)