updateShouldNotify method
Whether to notify listeners or not when state changes
Implementation
@override
bool updateShouldNotify(E old, E current) {
return !_isSilentUpdate && super.updateShouldNotify(old, current);
}
Whether to notify listeners or not when state changes
@override
bool updateShouldNotify(E old, E current) {
return !_isSilentUpdate && super.updateShouldNotify(old, current);
}