does the async operation in flutter still running even when the app is closed or killed off

556

No Flutter kills the process when you close the app.

Reference : https://medium.com/mindorks/asynchronous-programming-in-dart-flutter-part-1-dde723332698

Share:
556
Karrar
Author by

Karrar

MEFN stack developer / F stands for Flutter 😁

Updated on December 01, 2022

Comments

  • Karrar
    Karrar over 1 year

    I want to do some async operations that involve writing to local database only when the state of the app is InActive or Paused but what if the async operation while it is running and suddenly the app is closed

    does that operation still working until it finishes it's task or not ??