I'm building a mobile app using Flutter, in which I use flutter_redux and redux_thunk. There's two kind of timed actions I want to achieve:
Dispatch certain action every N seconds (repeated)
Dispatch an action once after N seconds, likely from a thunk action (single run)
Are there any packages that wrap this logic? What would be your suggested way to achieve the two kind of scheduled actions?