How to create a service in Flutter to make an app to run always in background?
There isn’t a way to do this directly from flutter right now although that may change at some point – see this bug/feature request. You do have a couple of options though. The first is to use MethodChannels and simply write the android code you want to create a background service (or if you want … Read more