notifyListeners method
void
notifyListeners()
When called, will notify listeners that a change happened on this component's class notifier.
Implementation
void notifyListeners() {
_gameRef.propagateToApplicableNotifiers(this, (notifier) {
notifier.notify();
});
}