//This method will get called on Create button event create() { this.todoService.createTodo(this.newTodo) .subscribe((res) => { this.todosList.push(res.data) this.newTodo = new ToDo() }) }