Get current user profile
Future<UserData> getCurrentProfile() async { final response = await _apiClient.get<Map<String, dynamic>>('/users/me'); return UserData.fromJson(response); }