//This pertains to the todoList class//
The property name is todoItems, which is an array of TodoItem objects fetched from the TodoItem file. I am unable to make it private using "private todoItems: TodoItem[] = []," is this because of Dependency Injection? Can I declare it in a different way?
constructor(public user: string, private todoItems: TodoItem[] = []) {
// no statements required
}