Answers for "flutter sharedpreferences clear"

0

flutter sharedpreferences clear

// You can simply use clear() function with your variable it
// will clear all the shared preferences.
SharedPreferences preferences = await SharedPreferences.getInstance();
await preferences.clear();
// If you want to remove particular key value from
// share preferences with key name you can do it like this way as follows.
SharedPreferences preferences = await SharedPreferences.getInstance();
await preferences.remove('KeyNameHere');
Posted by: Guest on January-27-2022

Code answers related to "flutter sharedpreferences clear"

Code answers related to "Dart"

Browse Popular Code Answers by Language