didUpdateWidget abstract method

bool didUpdateWidget({
  1. required Inheritable<T> next,
  2. required Inheritable<T> prev,
})

Called by Inheritable of T when it decides to notify it's dependents. This is only called after Inheritable of T has been updated at least once. For the first time, aka "init" phase, satisfiedBy is called instead.

Implementation

bool didUpdateWidget({
  required Inheritable<T> next,
  required Inheritable<T> prev,
});