OnDisposeCallback<St> typedef

OnDisposeCallback<St> = void Function(Store<St> store)

A function that will be run when the StoreConnector is removed from the Widget Tree. It is run in the State.dispose method. This can be useful for dispatching actions that remove stale data from your State tree.

Implementation

typedef OnDisposeCallback<St> = void Function(Store<St> store);