featureAgent method
Implementation
Future<http.Response> featureAgent(String agentID) async {
final uri = Uri.parse(
'$baseUrl/featureAgent?agentId=$agentID');
try {
final response = await http.post(
uri,
headers: {
'Content-Type': 'application/json',
},
body: '{}',
);
return response;
} catch (e) {
rethrow;
}
}