setSearchComment method

void setSearchComment(
  1. String comment
)

Establece el comentario buscado y notifica a los listeners

Implementation

void setSearchComment(String comment){
  searchComment = comment;
  // NOTIFICA A LOS LISTENERS QUE EL ESTADO HA CAMBIADO
  notifyListeners();
}