ExplicitRenderResult typedef
A record containing a dependency value and a rerender function.
dep: A value that changes each timererenderis called. Useful as a dependency for other hooks likeuseMemoizedoruseEffect.rerender: A callback function that triggers a rebuild of the widget.
Implementation
typedef ExplicitRenderResult = ({int dep, VoidCallback rerender});