didUpdate method

  1. @override
void didUpdate(
  1. covariant StatefulComponent oldComponent
)
override

Implementation

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