в коде getRequest у вас есть
getRequest({
this.http.get(url:'https://jsonplaceholder.typicode.com/todos/1',
parameters:{},
headers:{}
).then(onfulfilled:res=>this.requestObject =res.data)
.catch(onrejected:err=>this.requestObject=err);
Последние 2 строки:
.then(onfulfilled:res=>this.requestObject =res.data)
и
.catch(onrejected:err=>this.requestObject=err)
должно означать (я давно не касался angular), что если в запросе нет ошибок, вы звоните onfulfilled , но если у вас есть ошибки, вы звоните onrejected .
вам нужно определить эти 2 функции в своем коде, чтобы Angular вызывал их в соответствующее время.