addUsersToProject method
Add users to a project
Implementation
Future<Response> addUsersToProject(String projectId, List<Map<String, dynamic>> relations) async {
try {
final response = await _dio.post(
'/projects/$projectId/users',
data: relations,
);
return response;
} on DioException catch (e) {
throw Exception('Failed to add users to project: ${e.message}');
}
}