updateShouldNotify method

  1. @override
bool updateShouldNotify(
  1. EntityFake old,
  2. EntityFake current
)
inherited

Whether to notify listeners or not when state changes

Implementation

@override
bool updateShouldNotify(E old, E current) {
  return !_isSilentUpdate && super.updateShouldNotify(old, current);
}