updateTask method
Implementation
void updateTask(String newTask) {
if (newTask != this.task) {
this._task = newTask;
this.notifyListeners();
}
}
void updateTask(String newTask) {
if (newTask != this.task) {
this._task = newTask;
this.notifyListeners();
}
}