remove static method

Future<bool> remove(
  1. String key
)

remove.

Implementation

static Future<bool> remove(String key) async {
  if (_prefs == null) return false;
  return await _prefs!.remove(key);
}