remove static method

Future<bool> remove(
  1. String key
)

Removes an entry from SharedPreferences.

Implementation

static Future<bool> remove(String key) {
  return prefs!.remove(key);
}