flutter_background_service
flutter_background_service copied to clipboard
SharedPreference
Can't use Shared Preferences inside it. can anyone please help how can i use sharedpref inside it
You can use but, dart codes are isolated. So it means that you will working on memory, not disk. Check that: https://hackernoon.com/an-introduction-to-dart-code-and-isolate-em3j34u1
You can, just do
pref.reload();
before reading or writing.
pref.reload(); solution is perfect solution. Thank you @EmanueleVinci