removeValue method

void removeValue(
  1. String key
)

It removes a value from the localStorage

Implementation

void removeValue(String key) async{
  _prefs.then((SharedPreferences prefs) {
    prefs.remove(key);
  });
}