notifyListeners method
Notify all the listeners, respecting our paused state falg
Implementation
@override
void notifyListeners() {
if (!_paused) {
super.notifyListeners();
}
}
Notify all the listeners, respecting our paused state falg
@override
void notifyListeners() {
if (!_paused) {
super.notifyListeners();
}
}