remove static method

Future<bool>? remove(
  1. String key
)

移除指定key缓存

Implementation

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