didUpdate method
Implementation
@override
void didUpdate(StatefulComponent oldComponent) {
try {
_debugSetAllowIgnoredCallsToMarkNeedsBuild(true);
// TODO: check for returned future
state.didUpdateComponent(oldComponent);
} finally {
_debugSetAllowIgnoredCallsToMarkNeedsBuild(false);
}
super.didUpdate(oldComponent);
}