appendList method

void appendList ()

add new note locally to UI

Implementation

void appendList() {
  notesList.insert(0, notesBloc.note);
  notifyListeners();
}