clearPolling method
void
clearPolling()
Implementation
void clearPolling() {
final notifData = state["notifData"];
final pollingTimerId = notifData["pollingTimerId"];
updateNotifData({"lastFetchedOn": null, "firstFetchedOn": null});
if (pollingTimerId != null) {
pollingTimerId.cancel();
}
}