onDidChange property

OnDidChangeCallback<Store<S>>? onDidChange
final

A function that will be run on State change, after the Widget is built.

This can be useful for running certain animations after the build is complete

Note: Using a BuildContext inside this callback can cause problems if the callback performs navigation. For navigation purposes, please use onWillChange.

Implementation

final OnDidChangeCallback<Store<S>>? onDidChange;