remove static method

Future<bool> remove(
  1. String key
)

Removes a value from storage.

Implementation

static Future<bool> remove(String key) async {
  return await _prefs?.remove(key) ?? false;
}