onUpdateShouldNotify method
Should update the built-in InheritedWidget's dependencies
Implementation
bool onUpdateShouldNotify(covariant InheritedWidget oldWidget) {
bool should;
if (inUpdateShouldNotify != null) {
should = inUpdateShouldNotify!(oldWidget);
} else {
should = true;
}
return should;
}