timerSearchHandlerList method

dynamic timerSearchHandlerList()

Chiamato solo quando viene modificato il valore della xSearchBar

Implementation

timerSearchHandlerList() {
  setState(() {
    if (timerSearch != null) timerSearch!.cancel();
    if (xFilterValue != "") {
      xFilterCurrent = xFilterValue.toString();
    } else if (xFilterValue == "") {
      xFilterCurrent = "";
    }
  });
}