deleteProject method
Delete a project
Implementation
Future<Response> deleteProject(String projectId) async {
try {
final response = await _dio.delete(
'/projects/$projectId',
);
return response;
} on DioException catch (e) {
throw Exception('Failed to delete project: ${e.message}');
}
}