I'm a beginner in Angular 7 and TypeScript, and I am looking to pass a boolean value as an HttpParam. Is this achievable?
let body = new HttpParams();
body = body.set('name', string);
body = body.set('value', boolean);
The problem I am facing is how to pass the boolean value.